*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, sans-serif;
    background:#f4f6f9;
}

.main-container{
    display:flex;
}

/* SIDEBAR */

.sidebar{
    width:260px;
    height:100vh;
    background:#1e293b;
    color:white;
    position:fixed;
    left:0;
    top:0;
    overflow-y:auto;
}

.logo-section{
    padding:25px;
    text-align:center;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.menu{
    list-style:none;
    padding:20px 0;
}

.menu li{
    padding:12px 25px;
}

.menu li a{
    color:white;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:15px;
}

.menu li:hover{
    background:#334155;
}

/* CONTENT */

.content-area{
    margin-left:260px;
    width:100%;
}

/* NAVBAR */

.top-navbar{
    height:70px;
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 30px;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

.nav-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.notification{
    font-size:20px;
    cursor:pointer;
}

.user{
    font-weight:bold;
}

/* DASHBOARD */

.dashboard-content{
    padding:30px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.dashboard-card{
    background:white;
    padding:25px;
    border-radius:12px;
    box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

.dashboard-card h3{
    color:#555;
    margin-bottom:15px;
}

.dashboard-card h1{
    color:#1e293b;
}

/* WELCOME SECTION */

.welcome-section{
    margin-bottom:30px;
}

.welcome-section h2{
    color:#1e293b;
    margin-bottom:10px;
}

/* QUICK ACTIONS */

.quick-actions{
    margin-top:40px;
    background:white;
    padding:25px;
    border-radius:12px;
    box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

.quick-actions h3{
    margin-bottom:20px;
}

.action-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.action-btn{
    background:#1e293b;
    color:white;
    padding:12px 20px;
    text-decoration:none;
    border-radius:8px;
    transition:0.3s;
}

.action-btn:hover{
    background:#334155;
}

/* PAGE HEADER */

.page-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

/* ROOM TABLE */

.room-table{
    width:100%;
    background:white;
    border-collapse:collapse;
    border-radius:10px;
    overflow:hidden;
}

.room-table th,
.room-table td{
    padding:15px;
    border-bottom:1px solid #eee;
    text-align:left;
}

.room-table th{
    background:#1e293b;
    color:white;
}

/* STATUS BADGES */

.status-badge{
    padding:6px 12px;
    border-radius:20px;
    background:#e2e8f0;
    font-size:13px;
}

/* FORM */

.form-container{
    background:white;
    padding:30px;
    border-radius:10px;
    max-width:600px;
}

.form-container form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.form-container input,
.form-container select{
    padding:12px;
    border:1px solid #ccc;
    border-radius:5px;
}

.form-container button{
    background:#1e293b;
    color:white;
    padding:12px;
    border:none;
    border-radius:5px;
}

/* ROOM STATUS COLORS */

.status-badge{

    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    color:white;
    font-weight:bold;

}

.status-available{
    background:#16a34a;
}

.status-reserved{
    background:#f59e0b;
}

.status-occupied{
    background:#dc2626;
}

.status-maintenance{
    background:#334155;
}

.status-cleaning{
    background:#0ea5e9;
}

/* CHECK-IN BUTTON */

.checkin-btn{
    background:#16a34a;
    color:white;
    border:none;
    padding:8px 14px;
    border-radius:6px;
    cursor:pointer;
}

/* CHECK-OUT BUTTON */

.checkout-btn{
    background:#dc2626;
    color:white;
    border:none;
    padding:8px 14px;
    border-radius:6px;
    cursor:pointer;
}

/* CLEAN BUTTON */

.clean-btn{

    background:#0ea5e9;
    color:white;
    border:none;
    padding:8px 14px;
    border-radius:6px;
    cursor:pointer;

}
/* PAYMENT STATUS */

.status-pending{
    background:#f59e0b;
}

.status-paid{
    background:#16a34a;
}

.status-partial{
    background:#0ea5e9;
}

/* PAY BUTTON */

.pay-btn{

    background:#16a34a;
    color:white;
    border:none;
    padding:8px 14px;
    border-radius:6px;
    cursor:pointer;

}