/* RESET */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f6f8;
    color: #333;
}

.ag-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* HEADER */
#ag_header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo a {
    font-size: 20px;
    font-weight: bold;
    color: #4a90e2;
    text-decoration: none;
}

/* NAV */
#ag_nav ul {
    display: flex;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#ag_nav a {
    text-decoration: none;
    color: #333;
}

#ag_nav li.on a {
    color: #4a90e2;
    font-weight: bold;
}

/* USER */
.ag-user {
    display: flex;
    gap: 10px;
    font-size: 13px;
}

/* LAYOUT */
.ag-layout {
    display: flex;
    gap: 20px;
    padding: 30px 0;
}

/* SIDEBAR */
.ag-sidebar {
    width: 220px;
}

.widget-box {
    background: #fff;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 6px;
}

/* CONTENT */
.ag-content {
    flex: 1;
    min-width: 0;
}

.ag-content-full {
    width: 100%;
}

/* FOOTER */
#ag_footer {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
}

/* DARK MODE */
#ag_wrapper.theme-dark {
    background: #121212;
    color: #e0e0e0;
}

#ag_wrapper.theme-dark #ag_header {
    background: #1e1e1e;
    border-bottom: 1px solid #2d2d2d;
}

#ag_wrapper.theme-dark #ag_nav a {
    color: #e0e0e0;
}

#ag_wrapper.theme-dark #ag_nav li.on a {
    color: #bb86fc;
}