/* ==========================================
   DR SWEET – MEMBER PORTAL (PREMIUM EXECUTIVE)
========================================== */

.dsws-layout {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 70px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ===============================
   SIDEBAR – EXECUTIVE PANEL
================================ */

.dsws-sidebar {
    width: 300px;
    background: #faf8f4;
    padding: 45px 30px;
    border-radius: 16px;
}

/* Portal Label */
.dsws-sidebar h3 {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: #8a867f;
    margin-bottom: 35px;
}

/* Navigation */
.dsws-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dsws-sidebar li {
    margin-bottom: 20px;
}

.dsws-sidebar a {
    text-decoration: none;
    color: #3a3a3a;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

/* Hover */
.dsws-sidebar a:hover {
    color: #111;
    transform: translateX(2px);
}

/* Active */
.dsws-sidebar a.active {
    font-weight: 600;
    color: #111;
}

/* ===============================
   CONTENT AREA
================================ */

.dsws-content {
    flex: 1;
}

/* ===============================
   DASHBOARD CARD
================================ */

.dsws-dashboard-card {
    background: #FDFBF7;
    border: 1px solid #ece8df;
    border-radius: 16px;
    padding: 45px;
    margin-bottom: 45px;
}

.dsws-dashboard-card h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ===============================
   STATUS BADGE
================================ */

.dsws-status {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.dsws-status-processing {
    background: #fff6e5;
    color: #9c6b00;
}

.dsws-status-released {
    background: #eaf5ea;
    color: #2e7d32;
}

/* ===============================
   BUTTON
================================ */

.dsws-btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dsws-btn-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.dsws-btn-primary:hover {
    opacity: 0.85;
}

/* ===============================
   Remove stacked margin from report
================================ */

.dsws-content .dsws-report,
.dsws-content .dsws-blueprint {
    margin-top: 0 !important;
}