

.del-page {
    max-width: 1200px;
    width: 90%;
    margin: 40px auto 60px;
    font-family: 'Nunito Sans';
    padding-left: 0;
}

main {
    border: none !important;
    box-shadow: none !important;
}


.del-banner {
    width: 100%;
    max-width: 1300px;
    height: auto;
    background-color: rgb(4, 50, 89);
    box-shadow: rgb(96, 166, 153) 0px 4px 4px 0px;
    align-items: center;
    font-family: "Nunito Sans";
    display: grid;
    grid-template-columns: auto 1fr;
    box-sizing: border-box;
    padding: 24px 40px;
    border-radius: 10px;
    margin: 40px auto;
    gap: 40px;
}

 
.del-avatar {
    width: 52px;
    height: 52px;
    border-radius: 5px;
    background: rgba(96, 166, 153, 0.25);
    border: 2px solid #60A699;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    font-family: 'Nunito Sans', sans-serif;
}
 
.del-banner-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
 
.del-banner-greeting {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    margin: 0;
}
 
.del-banner-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0;
}
 
.del-banner-role {
    display: inline-block;
    background: #FFFFFF;
    border: 1px solid #60A699;
    color: #60A699;
    padding: 2px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    width: fit-content;
}
 
/* ── Date line ────────────────────────────────────────────── */
.del-date {
    font-size: 15px;
    font-weight: 600;
    color: #043259;
    margin-bottom: 16px;
    text-align: left;
}
 
/* ── Stat cards ───────────────────────────────────────────── */
.del-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
}
 
.del-stat {
    background: white;
    border: 1px solid #B0D9CD;
    border-radius: 5px;
    border-top: 4px solid #B0D9CD;
    padding: 16px 20px 20px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
 
.del-stat.teal       { border-top-color: #60A699; }
.del-stat.navy       { border-top-color: #043259; }
.del-stat.orange     { border-top-color: #F7911C; }
.del-stat.teal-dark  { border-top-color: #036A6F; }
.del-stat.coral      { border-top-color: #E56163; }
 
.del-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #4d6F8C;
    margin-bottom: 8px;
    display: block;
}
 
.del-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #043259;
    line-height: 1;
}
 
/* ── Agendas section ──────────────────────────────────────── */
.del-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #043259;
    margin-bottom: 16px;
    text-align: left;
}
 
.del-agendas-grid {
    display: grid;
    grid-template-columns: minmax(200px, 480px);
    gap: 16px;
    text-align: left;
}
 
.del-agenda-card {
    background: white;
    border: 1px solid #B0D9CD;
    border-radius: 5px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 4px 0 #60A699;
    cursor: pointer;
}
 
.del-agenda-card:hover {
    border-color: #60A699;
    background: rgba(176, 217, 205, 0.15);
    text-decoration: none;
}
 
.del-agenda-icon {
    width: 48px;
    height: 48px;
    border-radius: 5px;
    background: rgba(176, 217, 205, 0.35);
    border: 1px solid #B0D9CD;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
 
.del-agenda-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
 
.del-agenda-info {
    flex: 1;
}
 
.del-agenda-name {
    font-size: 16px;
    font-weight: 700;
    color: #043259;
    display: block;
    margin-bottom: 3px;
}
 
.del-agenda-npi {
    font-size: 13px;
    color: #4d6F8C;
    display: block;
}
 
.del-agenda-arrow {
    font-size: 18px;
    color: #60A699;
    font-weight: 700;
}
 
/* ── Logout ───────────────────────────────────────────────── */
.del-logout {
    display: block;
    text-align: center;
    margin-top: 48px;
    font-size: 14px;
    color: #4d6F8C;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Nunito Sans', sans-serif;
    padding: 12px 24px;
    transition: color 0.2s;
    width: 100%;
}
 
.del-logout:hover { color: #E56163; }
 
/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .del-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}
 
@media (max-width: 600px) {
    .del-page {
        width: 95%;
        margin: 20px auto 40px;
    }
 
    .del-banner {
        padding: 8px 16px;
        gap: 16px;
        margin: 16px auto;
    }
 
    .del-stats {
        grid-template-columns: repeat(2, 1fr);
    }
 
    .del-agendas-grid {
        grid-template-columns: 1fr;
    }
 
    .del-logout {
        padding: 8px 16px;
    }
}

 
/* ── Responsive ─────────────────────────────────────────────*/
@media (max-width: 480px) {
 
    .del-banner {
        width: 85%;
        box-sizing: border-box;
        padding: 0px 16px;
    }
 
}