*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f4f7fb;
    color:#1f2937;
}

.dashboard{
    display:flex;
    min-height:100vh;
}

/* Sidebar */

.sidebar{
    width:260px;
    background:linear-gradient(180deg,#0b4ea2 0%,#062a4d 100%);
    color:#fff;
    padding:30px 20px;
    position:fixed;
    height:100vh;
    left:0;
    top:0;
    box-shadow:10px 0 28px rgba(6,42,77,.18);
}

.logo{
    text-align:center;
    margin-bottom:40px;
}

.logo img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:10px;
}

.logo h2{
    font-size:22px;
}

.sidebar ul{
    list-style:none;
}

.sidebar ul li{
    padding:16px 18px;
    border-radius:10px;
    margin-bottom:10px;
    cursor:pointer;
    transition:.3s;
    display:flex;
    align-items:center;
    gap:15px;
}

.sidebar ul li:hover,
.sidebar ul li.active{
    background:#fff;
    color:#0b4ea2;
}

/* Main */

.main-content{
    margin-left:260px;
    width:calc(100% - 260px);
    padding:40px;
}

.main-content header{
    margin-bottom:35px;
}

.main-content h1{
    font-size:34px;
}

.main-content p{
    color:#666;
    margin-top:6px;
}

/* Cards */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:20px;
    margin-bottom:40px;
}

.card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 10px 24px rgba(15,23,42,.06);
    border:1px solid #eef2f7;
    transition:.25s ease;
}

.card:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 28px rgba(15,23,42,.1);
}

.card i{
    font-size:32px;
    color:#0b4ea2;
    margin-bottom:15px;
}

.card h3{
    color:#666;
    font-size:17px;
    margin-bottom:10px;
}

.card h2{
    font-size:36px;
    color:#0b4ea2;
}

/* Tables */

.table-section{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    margin-bottom:30px;
    overflow-x:auto;
}

.reply-card{
    max-width:920px;
    margin:0 auto;
    padding:32px;
    background:linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border:1px solid #e5efff;
    border-radius:24px;
    box-shadow:0 20px 45px rgba(11, 78, 162, 0.10);
}

.quote-form{
    display:grid;
    gap:16px;
}

.quote-form label{
    font-weight:600;
    color:#0b4ea2;
    font-size:14px;
    letter-spacing:.02em;
}

.quote-form input,
.quote-form textarea{
    width:100%;
    padding:15px 16px;
    border:1px solid #d0d7e2;
    border-radius:12px;
    font-size:15px;
    font-family:inherit;
    background:#ffffff;
    color:#111827;
    transition:border-color .25s ease, box-shadow .25s ease;
    -webkit-text-fill-color:#111827;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder{
    color:#6b7280;
    opacity:1;
}

.quote-form input:focus,
.quote-form textarea:focus{
    outline:none;
    border-color:#0b4ea2;
    box-shadow:0 0 0 3px rgba(11,78,162,.16);
    background:#ffffff;
}

.quote-form textarea{
    min-height:220px;
    resize:vertical;
}

.button-group{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    margin-top:8px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 22px;
    border-radius:999px;
    border:none;
    background:#0b4ea2;
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(11,78,162,.16);
}

.btn.secondary{
    background:#fff;
    color:#0b4ea2;
    border:1px solid #d0d7e2;
}

.btn.secondary:hover{
    background:#f8fbff;
    box-shadow:0 10px 20px rgba(15,23,42,.08);
}

.ops-panel{
    background:#fff;
    padding:28px;
    border-radius:16px;
    box-shadow:0 10px 24px rgba(15,23,42,.06);
    border:1px solid #eef2f7;
    margin-bottom:30px;
}

.ops-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:22px;
}

.eyebrow{
    text-transform:uppercase;
    letter-spacing:.16em;
    font-size:12px;
    color:#0b4ea2;
    font-weight:700;
    margin-bottom:4px;
}

.ops-pill{
    background:#edf5ff;
    color:#0b4ea2;
    padding:8px 12px;
    border-radius:999px;
    font-weight:700;
    font-size:13px;
}

.ops-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:16px;
}

.ops-card{
    background:#f8fbff;
    border:1px solid #e5efff;
    border-radius:14px;
    padding:18px;
}

.ops-icon{
    width:42px;
    height:42px;
    border-radius:10px;
    background:#eaf3ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:12px;
}

.ops-icon i{
    color:#0b4ea2;
    font-size:18px;
}

.ops-card h3{
    margin-bottom:6px;
    font-size:16px;
}

.ops-card p{
    font-size:14px;
    color:#667085;
    line-height:1.6;
}

.table-section h2{
    margin-bottom:20px;
}

table{
    width:100%;
    border-collapse:collapse;
}

table th{
    background:#0b4ea2;
    color:#fff;
    padding:15px;
    text-align:left;
}

table td{
    padding:15px;
    border-bottom:1px solid #eee;
}

table tr:hover{
    background:#f8f8f8;
}

/* Mobile */

@media(max-width:900px){

.sidebar{
    width:80px;
    padding:20px 10px;
}

.logo h2{
    display:none;
}

.logo img{
    width:50px;
    height:50px;
}

.sidebar li{
    justify-content:center;
}

.sidebar li i{
    margin:0;
}

.sidebar li{
    font-size:0;
}

.sidebar li i{
    font-size:22px;
}

.main-content{
    margin-left:80px;
    width:calc(100% - 80px);
    padding:20px;
}

.cards{
    grid-template-columns:1fr;
}

table{
    min-width:700px;
}

.ops-grid{
    grid-template-columns:1fr;
}

.reply-card{
    padding:24px;
}

.button-group{
    justify-content:flex-start;
}

}