.pas-dashboard{
    display:flex;
    min-height:100vh;
    font-family:Arial;
}

.pas-sidebar{
    width:260px;
    background:#111;
    color:#fff;
    padding:20px;
}

.pas-sidebar ul{
    list-style:none;
    padding:0;
}

.pas-sidebar ul li{
    padding:12px;
    cursor:pointer;
    border-bottom:1px solid #333;
}

.pas-content{
    flex:1;
    padding:30px;
    background:#f5f6fa;
}

.pas-profile-pic img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
}


/* =========================
   DASHBOARD WRAPPER
========================= */

.pas-dashboard{
    display:flex;
    gap:30px;
    min-height:100vh;
    padding:30px;
    background:#f4f7fc;
    box-sizing:border-box;
}

/* =========================
   SIDEBAR
========================= */

.pas-sidebar{
    width:280px;
    min-width:280px;
    background:#111827;
    border-radius:24px;
    padding:30px 20px;
    color:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.pas-profile-pic{
    text-align:center;
    margin-bottom:30px;
}

.pas-profile-pic img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid rgba(255,255,255,.15);
    background:#fff;
}

.pas-profile-pic input[type="file"]{
    margin-top:15px;
    width:100%;
    font-size:13px;
}

/* =========================
   MENU
========================= */

.pas-sidebar ul{
    list-style:none;
    margin:0;
    padding:0;
}

.pas-sidebar li{
    padding:15px 18px;
    margin-bottom:10px;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
    font-weight:600;
    font-size:15px;
    background:rgba(255,255,255,.04);
}

.pas-sidebar li:hover{
    background:#2563eb;
    transform:translateX(5px);
}

/* =========================
   CONTENT AREA
========================= */

.pas-content{
    flex:1;
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* =========================
   SECTION TITLE
========================= */

.pas-content h2{
    margin-top:0;
    margin-bottom:25px;
    font-size:30px;
    font-weight:700;
    color:#111827;
}

/* =========================
   PROFILE CARD
========================= */

#tab-profile p{
    background:#f8fafc;
    padding:16px 18px;
    margin-bottom:12px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    font-size:15px;
}

#tab-profile b{
    color:#111827;
    min-width:180px;
    display:inline-block;
}

/* =========================
   FORM
========================= */

#tab-edit input,
#tab-edit textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #d1d5db;
    border-radius:12px;
    margin-bottom:15px;
    font-size:15px;
    box-sizing:border-box;
    transition:.3s;
}

#tab-edit input:focus,
#tab-edit textarea:focus{
    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.1);
}

#tab-edit textarea{
    min-height:120px;
    resize:vertical;
}

/* =========================
   BUTTON
========================= */

#tab-edit button{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:12px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

#tab-edit button:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

/* =========================
   FILE INPUT PREMIUM
========================= */

.pas-profile-pic input[type="file"]{
    background:#2563eb;
    color:#fff;
    padding:10px;
    border-radius:10px;
    border:none;
    cursor:pointer;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .pas-dashboard{
        flex-direction:column;
        padding:20px;
    }

    .pas-sidebar{
        width:100%;
        min-width:100%;
    }

}

@media(max-width:768px){

    .pas-content{
        padding:20px;
    }

    .pas-content h2{
        font-size:24px;
    }

    #tab-profile b{
        display:block;
        margin-bottom:5px;
    }

}

@media(max-width:480px){

    .pas-dashboard{
        padding:15px;
    }

    .pas-sidebar{
        padding:20px 15px;
    }

    .pas-profile-pic img{
        width:110px;
        height:110px;
    }

}

.pas-sidebar{
    width:280px;
    background:#0f172a;
    border-radius:24px;
    padding:30px 20px;
    color:#fff;
}

.pas-sidebar-title{
    font-size:24px;
    font-weight:700;
    text-align:center;
    margin-bottom:30px;
    padding-bottom:20px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.pas-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.pas-menu li{
    padding:16px 20px;
    border-radius:14px;
    cursor:pointer;
    margin-bottom:10px;
    transition:.3s;
    font-weight:600;
}

.pas-menu li:hover{
    background:#2563eb;
    transform:translateX(6px);
}

.pas-menu li.active{
    background:#2563eb;
    color:#fff;
    transform:translateX(6px);
}


/* Upload Tab */

#tab-image{
    max-width:700px;
}

#tab-image h2{
    margin-bottom:20px;
}

#tab-image input[type="file"]{
    width:100%;
    padding:15px;
    border:2px dashed #d1d5db;
    border-radius:16px;
    background:#f8fafc;
    margin-bottom:20px;
    cursor:pointer;
    box-sizing:border-box;
}

#tab-image button{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

#tab-image button:hover{
    transform:translateY(-2px);
    background:#1d4ed8;
    box-shadow:0 10px 25px rgba(37,99,235,.25);
}

/* Form Labels */

.pas-field{
    margin-bottom:18px;
}

.pas-field label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#374151;
}

.pas-field input,
.pas-field textarea{
    width:100%;
    padding:14px;
    border:1px solid #d1d5db;
    border-radius:12px;
    box-sizing:border-box;
}

.pas-field textarea{
    min-height:120px;
    resize:vertical;
}
.booking-card{
    border:1px solid #ddd;
    border-radius:10px;
    padding:15px;
    margin-bottom:15px;
    background:#fff;
}

.booking-card h3{
    margin-top:0;
}