/*==================================
CUSTOMER DASHBOARD
==================================*/

.customer-dashboard{
    padding:80px 0;
    background:#f4f7fb;
    min-height:100vh;
}

.customer-dashboard .container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

.customer-dashboard h1{
    font-size:42px;
    color:#17314b;
    font-weight:700;
    margin-bottom:10px;
}

.customer-dashboard .dashboard-subtitle{
    color:#666;
    font-size:17px;
    margin-bottom:40px;
}

/*==================================
SUMMARY BOXES
==================================*/

.dashboard-summary{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:45px;
}

.summary-box{
    background:#17314b;
    color:#fff;
    padding:35px 25px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    transition:.3s;
}

.summary-box:hover{
    transform:translateY(-8px);
}

.summary-box h2{
    font-size:42px;
    font-weight:700;
    margin:0 0 10px;
}

.summary-box span{
    font-size:16px;
    opacity:.9;
}

/*==================================
GRID
==================================*/

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:30px;
}

/*==================================
CARDS
==================================*/

.dashboard-card{
    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-top:4px solid #c99717;
    transition:.3s;
}

.dashboard-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.dashboard-card h3{
    color:#17314b;
    font-size:24px;
    margin-bottom:20px;
}

.dashboard-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:12px;
}

/*==================================
BOOKINGS TABLE
==================================*/

.dashboard-table{
    width:100%;
    border-collapse:collapse;
    margin-top:15px;
}

.dashboard-table thead{
    background:#17314b;
}

.dashboard-table thead th{
    color:#fff;
    padding:16px;
    text-align:left;
    font-size:15px;
}

.dashboard-table tbody tr{
    border-bottom:1px solid #eee;
    transition:.3s;
}

.dashboard-table tbody tr:hover{
    background:#fafafa;
}

.dashboard-table td{
    padding:16px;
    color:#444;
    vertical-align:middle;
}

/*==================================
STATUS BADGES
==================================*/

.status-confirmed{
    background:#d4edda;
    color:#155724;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.status-pending{
    background:#fff3cd;
    color:#856404;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.status-cancelled{
    background:#f8d7da;
    color:#721c24;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/*==================================
BUTTONS
==================================*/

.dashboard-btn{
    display:inline-block;
    padding:12px 24px;
    background:#c99717;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.dashboard-btn:hover{
    background:#17314b;
    color:#fff;
}

/*==================================
NOTIFICATIONS
==================================*/

.notifications{
    list-style:none;
    margin:0;
    padding:0;
}

.notifications li{
    background:#f8f9fa;
    padding:15px;
    margin-bottom:12px;
    border-left:5px solid #c99717;
    border-radius:8px;
}

/*==================================
PROFILE
==================================*/

.profile-box{
    text-align:center;
}

.profile-box img{
    width:90px;
    height:90px;
    border-radius:50%;
    margin-bottom:15px;
}

.profile-box h4{
    margin-bottom:8px;
    color:#17314b;
}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px){

.dashboard-summary{
grid-template-columns:repeat(2,1fr);
}

.dashboard-grid{
grid-template-columns:1fr;
}

.dashboard-table{
display:block;
overflow-x:auto;
white-space:nowrap;
}

}

@media(max-width:768px){

.customer-dashboard{
padding:50px 0;
}

.customer-dashboard h1{
font-size:32px;
}

.dashboard-summary{
grid-template-columns:1fr;
}

.summary-box h2{
font-size:34px;
}

.dashboard-card{
padding:20px;
}

}