.editable{
    outline:2px dashed transparent;
    transition:.2s;
}

.editable:hover{
    outline:2px dashed #0d6efd;
    cursor:text;
}

.editable:focus{
    outline:2px solid #0d6efd;
    background:#f8f9fa;
}

.editable-image{
    cursor:pointer;
    transition:.2s;
    outline:2px dashed transparent;
}

.editable-image:hover{
    outline:2px dashed #0d6efd;
    opacity:.9;
}

.admin-bar button{

    margin-left:15px;

    padding:6px 12px;

    border:none;

    cursor:pointer;

}

body{
    font-family:Arial,sans-serif;
    background:#f5f5f5;
    margin:0;
    padding:40px 20px;
}

.container{
    max-width:1000px;
    margin:auto;
}

.admin-card{
    max-width:800px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:12px;
    box-shadow:
        0 4px 20px rgba(0,0,0,.08);
}

.back-link{
    display:inline-block;
    margin-bottom:25px;
    text-decoration:none;
    color:#666;
}

h1{
    margin-bottom:25px;
}

.add-button{
    display:inline-block;
    padding:12px 18px;
    background:#111;
    color:white;
    text-decoration:none;
    border-radius:6px;
    margin-bottom:25px;
}

.store-card,
.backup-card{

    background:white;

    padding:20px;

    margin-bottom:15px;

    border-radius:10px;

    box-shadow:
        0 2px 10px rgba(0,0,0,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;
}

.store-info,
.backup-info{
    flex:1;
}

.store-name{
    font-size:18px;
    font-weight:bold;
    margin-bottom:8px;
}

.store-meta{
    color:#666;
}

.filename{
    color:#777;
    font-size:13px;
    margin-top:5px;
    word-break:break-all;
}

.badge{

    display:inline-block;

    background:#eee;

    padding:4px 10px;

    border-radius:20px;

    font-size:12px;

    margin-bottom:10px;
}

.actions{

    display:flex;

    gap:10px;

    flex-wrap:wrap;
}

.button{

    display:inline-block;

    padding:10px 14px;

    color:white;

    text-decoration:none;

    border-radius:5px;

    white-space:nowrap;

    border:none;

    cursor:pointer;
}

.edit{
    background:#111;
}

.delete{
    background:#d9534f;
}

.form-group{
    margin-bottom:20px;
}

label{
    display:block;
    margin-bottom:8px;
    font-weight:bold;
}

input,
select,
textarea{

    width:100%;

    padding:12px;

    border:1px solid #ddd;

    border-radius:6px;

    font-size:14px;
}

input:focus,
select:focus,
textarea:focus{

    outline:none;

    border-color:#111;
}

.save-btn{

    background:#111;

    color:white;

    border:none;

    padding:14px 28px;

    border-radius:6px;

    cursor:pointer;

    font-size:15px;
}

.section-title{

    margin-top:35px;

    margin-bottom:15px;

    color:#666;

    font-size:14px;

    text-transform:uppercase;

    letter-spacing:1px;
}

@media(max-width:768px){

    .store-card,
    .backup-card{

        flex-direction:column;

        align-items:flex-start;
    }

    .actions{

        width:100%;
    }

    .button{

        flex:1;

        text-align:center;
    }

    .admin-card{
        padding:25px;
    }

}

.admin-card{

    max-width:500px;

    margin:60px auto;

    background:white;

    padding:40px;

    border-radius:12px;

    box-shadow:
        0 4px 20px rgba(0,0,0,.08);
}

.form-group{

    margin-bottom:20px;
}

.form-group label{

    display:block;

    margin-bottom:6px;

    font-weight:bold;
}

.form-group input,
.form-group textarea,
.form-group select{

    width:100%;

    padding:10px;

    border:1px solid #ddd;

    border-radius:6px;
}