/* ========================================
   RESET
======================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f4f7fa;
    overflow:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

button,
input,
textarea,
select{
    font-family:inherit;
}
/* ========================================
   ADMIN LAYOUT
======================================== */

.admin-container{
    display:flex;
    min-height:100vh;
}

/* Sidebar */

.sidebar{
    position:fixed;
    left:0;
    top:0;
    width:280px;
    height:100vh;
    background:#0f3b4c;
    color:#fff;
    overflow-y:auto;
    overflow-x:hidden;
    padding:25px;
    z-index:999;
}

/* Content */

.content{
    margin-left:280px;
    width:calc(100% - 280px);
    height:100vh;
    overflow-y:auto;
    overflow-x:hidden;
    padding:25px 40px 40px;
    background:#f4f7fa;
}

/* Topbar */

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.topbar h1{
    color:#173a44;
    font-size:32px;
    font-weight:700;
}
/* ========================================
   SIDEBAR BRAND
======================================== */

.admin-brand{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:40px;
    padding-bottom:20px;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.admin-brand img{
    width:70px;
    height:70px;
    object-fit:contain;
    background:#fff;
    border-radius:50%;
    padding:4px;
}

.brand-text h2{
    font-size:18px;
    font-weight:700;
    color:#fff;
    margin-bottom:3px;
}

.brand-text p{
    font-size:13px;
    color:#cbd5e1;
}


/* ========================================
   SIDEBAR MENU
======================================== */

.menu{
    list-style:none;
}

.menu li{
    margin-bottom:10px;
}

.menu a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    border-radius:10px;
    color:#fff;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.menu a:hover,
.menu a.active{
    background:#15607b;
}
/* ========================================
   DASHBOARD CARDS
======================================== */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-bottom:35px;
}

.card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.card h2{
    font-size:42px;
    color:#0f766e;
    margin-bottom:10px;
    font-weight:700;
}

.card p{
    color:#64748b;
    font-size:15px;
}


/* ========================================
   DASHBOARD PANELS
======================================== */

.dashboard-grid{
    display:block;
}

.panel{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.panel h3{
    color:#173a44;
    font-size:22px;
    margin-bottom:20px;
}

.panel ul{
    padding-left:20px;
}

.panel li{
    margin-bottom:12px;
}

.panel button{
    width:100%;
    padding:13px;
    border:none;
    border-radius:10px;
    background:#0f766e;
    color:#fff;
    font-size:15px;
    cursor:pointer;
    transition:.3s;
}

.panel button:hover{
    background:#0b5d57;
}
/* ========================================
   TABLES
======================================== */

.table-box{
    width:100%;
    overflow-x:auto;
    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

table{
    width:100%;
    min-width:900px;
    border-collapse:collapse;
}

thead{
    background:#0f3b4c;
}

thead th{
    color:#fff;
    padding:18px 15px;
    text-align:left;
    font-size:15px;
    font-weight:600;
}

tbody td{
    padding:18px 15px;
    border-bottom:1px solid #edf2f7;
    color:#374151;
    vertical-align:middle;
}

tbody tr{
    transition:.25s;
}

tbody tr:hover{
    background:#f8fafc;
}

tbody tr:last-child td{
    border-bottom:none;
}

/* Images */

.photo{
    width:110px;
    height:75px;
    object-fit:cover;
    border-radius:10px;
}

table img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:10px;
}

/* Action Buttons */

.action{
    display:flex;
    align-items:center;
    gap:10px;
}

/* Edit */

.edit-btn{
    display:inline-block;
    padding:9px 16px;
    border-radius:8px;
    background:#2563eb;
    color:#fff;
    font-size:14px;
    font-weight:600;
    transition:.25s;
}

.edit-btn:hover{
    background:#1d4ed8;
}

/* Gallery */

.gallery-btn{
    display:inline-block;
    padding:9px 16px;
    border-radius:8px;
    background:#0891b2;
    color:#fff;
    font-size:14px;
    font-weight:600;
    transition:.25s;
}

.gallery-btn:hover{
    background:#0e7490;
}

/* Delete */

.delete-btn{
    display:inline-block;
    padding:9px 16px;
    border-radius:8px;
    background:#dc2626;
    color:#fff;
    font-size:14px;
    font-weight:600;
    transition:.25s;
}

.delete-btn:hover{
    background:#b91c1c;
}

/* View */

.view-btn{
    display:inline-block;
    padding:9px 16px;
    border-radius:8px;
    background:#0f766e;
    color:#fff;
    font-size:14px;
    font-weight:600;
}

.view-btn:hover{
    background:#0b5d57;
}

/* Responsive */

@media(max-width:900px){

.table-box{
    overflow-x:auto;
}

table{
    min-width:900px;
}

}
/* ========================================
   FORMS
======================================== */

.form-box{
    max-width:1100px;
    margin:30px auto;
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.form-header{
    margin-bottom:35px;
    text-align:center;
}

.form-header h1{
    font-size:34px;
    color:#173a44;
    font-weight:700;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group.full{
    grid-column:1 / -1;
}

.form-group label{
    margin-bottom:8px;
    font-size:15px;
    font-weight:600;
    color:#173a44;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #d6d6d6;
    border-radius:12px;
    background:#fafafa;
    font-size:15px;
    transition:.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline:none;
    border-color:#0f766e;
    background:#fff;
    box-shadow:0 0 0 4px rgba(15,118,110,.12);
}

.form-group textarea{
    min-height:160px;
    resize:vertical;
}

.button-group{
    grid-column:1 / -1;
    display:flex;
    justify-content:flex-end;
    gap:15px;
    margin-top:20px;
}

.btn-primary{
    background:#0f766e;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-primary:hover{
    background:#0b5d57;
    transform:translateY(-2px);
}

.btn-secondary{
    background:#64748b;
    color:#fff;
    padding:14px 30px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-secondary:hover{
    background:#475569;
}

.save-btn{
    background:#0f766e;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
}

.save-btn:hover{
    background:#0b5d57;
}

.back-btn{
    background:#64748b;
    color:#fff;
    padding:14px 30px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
}

.back-btn:hover{
    background:#475569;
}

@media(max-width:900px){

.form-grid{
    grid-template-columns:1fr;
}

.form-group.full{
    grid-column:auto;
}

.button-group{
    flex-direction:column;
}

.btn-primary,
.btn-secondary,
.save-btn,
.back-btn{
    width:100%;
    text-align:center;
}

}
/* ========================================
   DYNAMIC ROOM CARDS
======================================== */

.rooms-wrapper{
    margin-top:40px;
}

.rooms-title{
    font-size:28px;
    color:#173a44;
    font-weight:700;
    margin-bottom:25px;
}

.room-card{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:30px;
    margin-bottom:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    position:relative;
    transition:.3s;
}

.room-card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.room-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    padding-bottom:15px;
    border-bottom:1px solid #edf2f7;
}

.room-title h3{
    font-size:22px;
    color:#173a44;
    font-weight:700;
}

.room-number{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#0f766e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
}

.room-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.room-grid .full{
    grid-column:1/-1;
}

.room-grid label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#173a44;
}

.room-grid input,
.room-grid select,
.room-grid textarea{
    width:100%;
    padding:14px;
    border:1px solid #d8d8d8;
    border-radius:12px;
    background:#fafafa;
    transition:.3s;
    font-size:15px;
}

.room-grid input:focus,
.room-grid select:focus,
.room-grid textarea:focus{
    outline:none;
    background:#fff;
    border-color:#0f766e;
    box-shadow:0 0 0 4px rgba(15,118,110,.12);
}

.room-grid textarea{
    min-height:130px;
    resize:vertical;
}

.room-actions{
    display:flex;
    justify-content:flex-end;
    margin-top:20px;
}

.remove-room{
    background:#dc2626;
    color:#fff;
    border:none;
    border-radius:10px;
    padding:12px 20px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.remove-room:hover{
    background:#b91c1c;
}

.add-room-wrapper{
    margin-top:30px;
    text-align:center;
}

.add-room-btn{
    background:#ffffff;
    border:2px dashed #0f766e;
    color:#0f766e;
    padding:15px 35px;
    border-radius:14px;
    cursor:pointer;
    font-size:16px;
    font-weight:700;
    transition:.3s;
}

.add-room-btn:hover{
    background:#0f766e;
    color:#fff;
}

@media(max-width:900px){

.room-grid{
    grid-template-columns:1fr;
}

.room-grid .full{
    grid-column:auto;
}

.room-title{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
}

.room-number{
    width:38px;
    height:38px;
    font-size:16px;
}

}
/* ========================================
   PROFESSIONAL TABLE DESIGN
======================================== */

.table-box{
    width:100%;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    margin-top:25px;
}

.table-wrapper{
    overflow-x:auto;
}

table{
    width:100%;
    border-collapse:collapse;
    min-width:1000px;
}

thead{
    background:#0f766e;
}

thead th{
    color:#fff;
    font-size:15px;
    font-weight:700;
    text-align:left;
    padding:18px 20px;
    white-space:nowrap;
}

tbody tr{
    transition:.25s;
}

tbody tr:nth-child(even){
    background:#fafafa;
}

tbody tr:hover{
    background:#eefaf8;
}

tbody td{
    padding:18px 20px;
    border-bottom:1px solid #ececec;
    vertical-align:middle;
    color:#374151;
    font-size:15px;
}

tbody tr:last-child td{
    border-bottom:none;
}

/* Images */

.table-image{
    width:95px;
    height:70px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.12);
}

/* Status */

.status-active{
    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    background:#dcfce7;
    color:#166534;
    font-weight:700;
    font-size:13px;
}

.status-pending{
    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    background:#fef3c7;
    color:#92400e;
    font-weight:700;
    font-size:13px;
}

.status-cancelled{
    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    background:#fee2e2;
    color:#991b1b;
    font-weight:700;
    font-size:13px;
}

/* Actions */

.action-buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.action-buttons a,
.action-buttons button{
    text-decoration:none;
    border:none;
    cursor:pointer;
}

/* Responsive */

@media(max-width:900px){

.table-box{
    overflow-x:auto;
}

table{
    min-width:900px;
}

}
/* ==========================================
   PROFESSIONAL ADMIN FORM
========================================== */

.form-box{
    max-width:1000px;
    margin:30px auto;
    background:#ffffff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.form-header{
    background:linear-gradient(135deg,#0f766e,#155e75);
    padding:28px 35px;
}

.form-header h1{
    color:#fff;
    font-size:32px;
    font-weight:700;
    margin:0;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    padding:35px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group.full{
    grid-column:1 / -1;
}

.form-group label{
    margin-bottom:8px;
    color:#173a44;
    font-size:15px;
    font-weight:600;
}

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

    width:100%;
    padding:14px 16px;

    border:1px solid #d8dee4;

    border-radius:12px;

    background:#fafafa;

    font-size:15px;

    transition:.25s;

}

.form-group textarea{

    min-height:160px;

    resize:vertical;

}

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

    outline:none;

    border-color:#0f766e;

    background:#fff;

    box-shadow:0 0 0 4px rgba(15,118,110,.15);

}

.button-group{

    grid-column:1/-1;

    display:flex;

    justify-content:flex-end;

    gap:15px;

    margin-top:10px;

}

.btn-primary{

    background:#0f766e;

    color:white;

    border:none;

    padding:14px 30px;

    border-radius:12px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

.btn-primary:hover{

    background:#0d5f59;

    transform:translateY(-2px);

}

.btn-secondary{

    background:#64748b;

    color:white;

    text-decoration:none;

    padding:14px 30px;

    border-radius:12px;

    font-size:15px;

    font-weight:600;

    transition:.25s;

}

.btn-secondary:hover{

    background:#475569;

}

@media(max-width:900px){

.form-grid{

grid-template-columns:1fr;

}

.form-group.full{

grid-column:auto;

}

.button-group{

justify-content:stretch;

flex-direction:column;

}

.btn-primary,
.btn-secondary{

width:100%;
text-align:center;

}

}
/* ==========================================
   ROOM SECTION
========================================== */

.room-card{

    background:#ffffff;

    border-radius:20px;

    margin-bottom:35px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    border:1px solid #edf2f7;

}

.room-title{

    background:#f8fafc;

    border-bottom:1px solid #e2e8f0;

    padding:20px 30px;

    font-size:22px;

    font-weight:700;

    color:#173a44;

}

.room-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    padding:30px;

}

.room-grid .full{

    grid-column:1 / -1;

}

.room-grid label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#173a44;

}

.room-grid input,
.room-grid select,
.room-grid textarea{

    width:100%;

    padding:14px;

    border:1px solid #d8dee4;

    border-radius:12px;

    background:#fafafa;

    font-size:15px;

    transition:.25s;

}

.room-grid input:focus,
.room-grid select:focus,
.room-grid textarea:focus{

    outline:none;

    background:white;

    border-color:#0f766e;

    box-shadow:0 0 0 4px rgba(15,118,110,.15);

}

.room-grid textarea{

    min-height:130px;

    resize:vertical;

}

.room-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 30px;

    border-top:1px solid #edf2f7;

}

.add-room-wrapper{

    text-align:center;

    margin:35px 0;

}

.add-room-btn{

    background:#0f766e;

    color:white;

    border:none;

    padding:15px 35px;

    border-radius:12px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

    box-shadow:0 10px 25px rgba(15,118,110,.25);

}

.add-room-btn:hover{

    background:#0b5d57;

    transform:translateY(-3px);

}

.remove-room{

    background:#dc2626;

    color:white;

    border:none;

    padding:12px 22px;

    border-radius:10px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}

.remove-room:hover{

    background:#b91c1c;

}

@media(max-width:900px){

.room-grid{

grid-template-columns:1fr;

}

.room-grid .full{

grid-column:auto;

}

.room-footer{

flex-direction:column;

gap:15px;

align-items:stretch;

}

.remove-room{

width:100%;

}

}
/* ==========================================
   DASHBOARD STAT CARDS
========================================== */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:25px;

    margin-bottom:35px;

}

.card{

    position:relative;

    background:#fff;

    border-radius:20px;

    padding:30px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.3s;

    border:1px solid #edf2f7;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:6px;
    height:100%;

    background:linear-gradient(180deg,#0f766e,#0891b2);

}

.card h2{

    font-size:42px;

    color:#0f766e;

    margin-bottom:10px;

    font-weight:700;

}

.card p{

    color:#64748b;

    font-size:15px;

    font-weight:500;

    margin:0;

}
/* ==========================================
   PROFESSIONAL TABLES
========================================== */

.table-box{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    margin-top:25px;

}

.table-wrapper{

    overflow-x:auto;

}

table{

    width:100%;

    border-collapse:collapse;

    min-width:1000px;

}

thead{

    background:linear-gradient(135deg,#0f766e,#155e75);

}

thead th{

    color:#fff;

    padding:18px 20px;

    font-size:15px;

    font-weight:700;

    text-align:left;

    white-space:nowrap;

}

tbody tr{

    transition:.25s;

}

tbody tr:nth-child(even){

    background:#fafafa;

}

tbody tr:hover{

    background:#eef8f7;

}

tbody td{

    padding:18px 20px;

    border-bottom:1px solid #edf2f7;

    vertical-align:middle;

    color:#374151;

    font-size:15px;

}

tbody tr:last-child td{

    border-bottom:none;

}

/* Images */

.table-image{

    width:90px;

    height:70px;

    object-fit:cover;

    border-radius:12px;

    box-shadow:0 5px 15px rgba(0,0,0,.12);

}

/* Action Buttons */

.action-buttons{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

}

.edit-btn,
.delete-btn,
.gallery-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    border-radius:10px;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    transition:.25s;

}

.edit-btn{

    background:#2563eb;

    color:#fff;

}

.edit-btn:hover{

    background:#1d4ed8;

}

.gallery-btn{

    background:#0891b2;

    color:#fff;

}

.gallery-btn:hover{

    background:#0e7490;

}

.delete-btn{

    background:#dc2626;

    color:#fff;

}

.delete-btn:hover{

    background:#b91c1c;

}

/* Responsive */

@media(max-width:900px){

table{

min-width:900px;

}

}
/* ==========================================
   PROFESSIONAL MODALS
========================================== */

.modal,
.logout-modal{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(15,23,42,.55);

    justify-content:center;

    align-items:center;

    z-index:99999;

    backdrop-filter:blur(4px);

}

.modal-box,
.logout-box{

    width:420px;

    max-width:92%;

    background:#ffffff;

    border-radius:22px;

    padding:35px;

    text-align:center;

    box-shadow:0 25px 60px rgba(0,0,0,.25);

    animation:modalPop .25s ease;

}

@keyframes modalPop{

from{

transform:translateY(15px) scale(.95);

opacity:0;

}

to{

transform:translateY(0) scale(1);

opacity:1;

}

}

.modal-box h2,
.logout-box h2{

    color:#173a44;

    font-size:28px;

    margin-bottom:15px;

}

.modal-box p,
.logout-box p{

    color:#64748b;

    line-height:1.6;

    margin-bottom:30px;

}

.modal-actions{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

.btn-danger{

    background:#dc2626;

    color:white;

    border:none;

    border-radius:12px;

    padding:13px 26px;

    cursor:pointer;

    font-weight:600;

    transition:.25s;

}

.btn-danger:hover{

    background:#b91c1c;

    transform:translateY(-2px);

}

.btn-success{

    background:#0f766e;

    color:white;

    border:none;

    border-radius:12px;

    padding:13px 26px;

    cursor:pointer;

    font-weight:600;

    transition:.25s;

}

.btn-success:hover{

    background:#0b5d57;

    transform:translateY(-2px);

}

.btn-secondary{

    background:#64748b;

    color:white;

    border:none;

    border-radius:12px;

    padding:13px 26px;

    cursor:pointer;

    font-weight:600;

    transition:.25s;

}

.btn-secondary:hover{

    background:#475569;

    transform:translateY(-2px);

}
/* ==========================================
   FINAL UI POLISH
========================================== */

/* Page spacing */

.content{

    padding:35px 40px 45px;

}

/* Page title */

.page-title,
.topbar h1{

    font-size:34px;

    color:#173a44;

    font-weight:700;

    margin-bottom:30px;

}

/* Top action buttons */

.top-actions{

    display:flex;

    justify-content:flex-end;

    margin-bottom:25px;

}

/* Buttons */

.add-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 24px;

    border-radius:12px;

    background:#0f766e;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

    box-shadow:0 10px 25px rgba(15,118,110,.25);

}

.add-btn:hover{

    background:#0b5d57;

    transform:translateY(-3px);

}

/* Panels */

.panel{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.panel h3{

    color:#173a44;

    margin-bottom:20px;

}

/* Smooth animations */

.card,
.table-box,
.panel,
.form-box,
.room-card{

    transition:.3s;

}

/* Better scrollbar */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#b7c2cd;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#94a3b8;

}

/* Responsive */

@media(max-width:1024px){

.sidebar{

    width:250px;

}

.content{

    margin-left:250px;

    width:calc(100% - 250px);

    padding:25px;

}

}

@media(max-width:768px){

.sidebar{

    position:relative;

    width:100%;

    height:auto;

}

.content{

    margin-left:0;

    width:100%;

}

.cards{

    grid-template-columns:1fr;

}

.page-title{

    font-size:28px;

}

}
/* =========================
   LOGIN PAGE
========================= */

.login-container{
    width:420px;
    margin:80px auto;
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    text-align:center;
}

.login-container img{
    width:350px;
    height:110px;
    object-fit:contain;
    margin-bottom:20px;
}

.login-container h2{
    margin-bottom:25px;
    color:#173a44;
    font-size:30px;
    font-weight:700;
}

.login-container input{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:1px solid #d1d5db;
    border-radius:10px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.login-container input:focus{
    border-color:#0f766e;
    box-shadow:0 0 0 3px rgba(15,118,110,.15);
}

.login-container button{
    width:100%;
    padding:14px;
    background:#0f766e;
    color:#fff;
    border:none;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.login-container button:hover{
    background:#0b5d57;
}

#locationMap {
    width: 100%;
    height: 400px;
    margin-top: 10px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d9e2e7;
}

.map-help {
    margin-top: 8px;
    font-size: 14px;
    color: #64748b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* =========================================
   ADD ATTRACTION CARD
========================================= */

.form-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    width: 100%;
    box-sizing: border-box;
}


/* =========================================
   FORM GRID
========================================= */

.form-card .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}


/* =========================================
   FULL WIDTH FIELDS
========================================= */

.form-card .form-group.full {
    grid-column: 1 / -1;
}


/* =========================================
   LABELS
========================================= */

.form-card label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}


/* =========================================
   INPUTS
========================================= */

.form-card input[type="text"],
.form-card input[type="file"],
.form-card textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #ffffff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: 0.2s ease;
}


/* =========================================
   TEXTAREA
========================================= */

.form-card textarea {
    min-height: 130px;
    resize: vertical;
}


/* =========================================
   FOCUS
========================================= */

.form-card input:focus,
.form-card textarea:focus {
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.10);
}


/* =========================================
   LOCATION MAP
========================================= */

#locationMap {
    width: 100%;
    height: 430px;
    margin-top: 10px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d1d5db;
}


/* =========================================
   MAP HELP
========================================= */

.map-help {
    margin: 8px 0 0;
    font-size: 13px;
    color: #6b7280;
}


/* =========================================
   ACTION BUTTONS
========================================= */

.form-card .modal-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 10px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .form-card {
        padding: 20px;
    }

    .form-card .form-grid {
        grid-template-columns: 1fr;
    }

    .form-card .form-group.full {
        grid-column: auto;
    }

    .form-card .modal-actions {
        grid-column: auto;
        flex-direction: column;
    }

    .form-card .modal-actions button,
    .form-card .modal-actions a {
        width: 100%;
    }

}
