.as-wrapper {
    width: 100%;
    min-height: 100vh;
}

.as-layout {
    display: flex;
    min-height: 100vh;
}

.as-sidebar {
    width: 240px;
}

.as-content {
    flex: 1;
}

<style>
/* ==============================
   DASHBOARD WRAPPER (SCOPED)
============================== */
.as-wrapper {
    width: 100%;
    min-height: 100vh;
}

/* ==============================
   LAYOUT
============================== */
.as-layout {
    display: flex;
    min-height: 100vh;
}

.as-sidebar {
    width: 240px;
    min-height: 100vh;
    background: linear-gradient(180deg, #0f1f3d, #1f3b73);
    color: #fff;
    padding: 25px;
}

.as-content {
    flex: 1;
    padding: 40px;
    background: #f8fafc;
}

/* ==============================
   SIDEBAR
============================== */
.as-sidebar h3 {
    margin-bottom: 20px;
}

.as-sidebar ul {
    padding: 0;
    list-style: none;
}

.as-sidebar ul li {
    margin-bottom: 10px;
}

.as-sidebar a {
    color: #cbd5f1;
    text-decoration: none;
    display: block;
}

.as-sidebar a:hover {
    color: #fff;
}

/* ==============================
   CARD PROFIL
============================== */
.as-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    max-width: 500px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.as-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.as-card-header h3 {
    margin: 0;
    color: #0f1f3d;
}

.as-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.as-role {
    color: #64748b;
}

/* ==============================
   AVATAR
============================== */
.as-avatar {
    width: 60px;
    height: 60px;
    background: #1f3b73;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==============================
   DATA ROW
============================== */
.as-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
    padding: 8px 0;
}

.as-row span {
    color: #64748b;
}

.as-row strong {
    color: #1e293b;
}

/* ==============================
   SECTION
============================== */
.as-section {
    margin-bottom: 30px;
}

/* ==============================
   TABLE
============================== */
.as-table-wrapper {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    overflow-x: auto;
}

.as-table {
    width: 100%;
    border-collapse: collapse;
}

.as-table th {
    background: #1f3b73;
    color: #fff;
    padding: 10px;
    text-align: left;
}

.as-table td {
    padding: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.as-table tr:hover {
    background: #f1f5f9;
}
</style>