/* =============================================
   Belajar Google Ads
   apriyanto.my.id | v5.1
   ============================================= */

*, *::before, *::after { box-sizing: border-box; }

:root {
    --blue:        #3b5bdb;
    --blue-dark:   #2f4ac0;
    --blue-deeper: #253da8;
    --blue-light:  #edf2ff;
    --blue-mid:    #4c6ef5;
    --green:       #2f9e44;
    --green-light: #ebfbee;
    --red:         #e03131;
    --red-light:   #fff5f5;
    --dark:        #1a1b2e;
    --gray:        #495057;
    --gray-light:  #868e96;
    --border:      #dee2e6;
    --bg:          #f1f3f9;
    --white:       #ffffff;
}

.gads-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

/* =============================================
   AUTH PAGES
   ============================================= */
.gads-auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    padding: 24px 16px;
}

.gads-auth-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 36px;
    width: 100%;
    max-width: 420px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.gads-auth-brand {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.gads-auth-brand h2 {
    margin: 0 0 4px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.3px;
}

.gads-auth-brand p {
    margin: 0;
    font-size: 0.78rem;
    color: var(--gray-light);
}

.gads-auth-card h3 {
    margin: 0 0 20px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.gads-field {
    margin-bottom: 14px;
}

.gads-field label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.gads-field input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

.gads-field input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59,91,219,0.1);
}

.gads-forgot-link {
    text-align: right;
    margin-top: -6px;
    margin-bottom: 14px;
}

.gads-forgot-link a {
    font-size: 0.78rem;
    color: var(--blue);
    text-decoration: none;
}

.gads-forgot-link a:hover { text-decoration: underline; }

.gads-auth-foot {
    margin-top: 16px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--gray-light);
}

.gads-auth-foot a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}

/* =============================================
   BUTTONS
   ============================================= */
.gads-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background .15s, box-shadow .15s;
    width: 100%;
}

.gads-btn:hover {
    background: var(--blue-dark);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(59,91,219,0.25);
}

.gads-btn-outline {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
}

.gads-btn-outline:hover {
    background: var(--blue-light);
    color: var(--blue-dark);
    box-shadow: none;
}

.gads-btn-ghost {
    background: var(--white);
    color: var(--gray);
    border: 1.5px solid var(--border);
}

.gads-btn-ghost:hover {
    background: var(--bg);
    color: var(--dark);
    border-color: #adb5bd;
    box-shadow: none;
}

.gads-btn-disabled {
    background: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
    border: none;
    box-shadow: none !important;
}

.gads-btn-sm {
    padding: 7px 16px;
    font-size: 0.8rem;
    width: auto;
    border-radius: 5px;
}

.gads-btn-auto { width: auto; }

/* =============================================
   ALERTS
   ============================================= */
.gads-alert {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.gads-alert-success { background: var(--green-light); color: #1a6b2e; border-left: 3px solid var(--green); }
.gads-alert-error   { background: var(--red-light); color: #9b1c1c; border-left: 3px solid var(--red); }
.gads-alert-info    { background: var(--blue-light); color: var(--blue-dark); border-left: 3px solid var(--blue); }

.gads-msg {
    font-size: 0.83rem;
    margin-top: 8px;
    min-height: 18px;
}

.gads-msg.success { color: #1a6b2e; }
.gads-msg.error   { color: #9b1c1c; }

/* =============================================
   COURSE SHELL
   ============================================= */
.gads-course-shell {
    display: flex;
    height: calc(100vh - 60px);
    min-height: 500px;
    background: var(--bg);
    overflow: hidden;
}

/* =============================================
   SIDEBAR
   ============================================= */
.gads-sidebar {
    width: 160px;
    flex-shrink: 0;
    background: var(--blue);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gads-sidebar-head {
    padding: 14px 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.gads-sidebar-course-tag {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 5px;
    display: block;
}

.gads-sidebar-head h2 {
    margin: 0 0 3px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    line-height: 1.3;
}

.gads-sidebar-head p {
    margin: 0;
    font-size: 0.62rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.gads-sidebar-progress {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.gads-sidebar-progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.gads-sidebar-progress-label span:last-child {
    font-weight: 700;
    color: var(--white);
}

.gads-sidebar-bar {
    background: rgba(255,255,255,0.2);
    border-radius: 99px;
    height: 5px;
    overflow: hidden;
}

.gads-sidebar-bar-fill {
    background: var(--white);
    height: 100%;
    border-radius: 99px;
    transition: width .6s ease;
}

.gads-sidebar-modules {
    flex: 1;
    overflow-y: auto;
    padding: 4px 0;
}

.gads-sidebar-modules::-webkit-scrollbar { width: 3px; }
.gads-sidebar-modules::-webkit-scrollbar-track { background: transparent; }
.gads-sidebar-modules::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 99px; }

.gads-mod-group { margin-bottom: 1px; }

.gads-mod-group-header {
    padding: 8px 14px;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: color .15s, background .15s;
}

.gads-mod-group-header:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.gads-mod-group-header .gads-mod-count {
    font-size: 0.65rem;
    background: rgba(255,255,255,0.15);
    padding: 2px 7px;
    border-radius: 99px;
    color: rgba(255,255,255,0.8);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.gads-mod-group-header.done { color: rgba(255,255,255,0.9); }
.gads-mod-group-header.done .gads-mod-count {
    background: rgba(255,255,255,0.25);
    color: var(--white);
}

.gads-mod-group-header.active { color: var(--white); }
.gads-mod-group-header.active .gads-mod-count {
    background: rgba(255,255,255,0.25);
    color: var(--white);
}

.gads-mod-lessons { display: none; }
.gads-mod-lessons.open { display: block; }

.gads-lesson-item {
    padding: 6px 10px 6px 14px;
    font-size: 0.79rem;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .1s, color .1s;
    border-left: 2px solid transparent;
    line-height: 1.4;
}

.gads-lesson-item:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

.gads-lesson-item.active {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-left-color: var(--white);
}

.gads-lesson-item.answered { color: rgba(255,255,255,0.8); }
.gads-lesson-item.answered.active {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.gads-lesson-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    flex-shrink: 0;
    transition: background .2s;
}

.gads-lesson-item.answered .gads-lesson-dot { background: rgba(255,255,255,0.9); }
.gads-lesson-item.active .gads-lesson-dot { background: var(--white); }

.gads-lesson-num {
    flex-shrink: 0;
    font-size: 0.68rem;
    color: inherit;
    opacity: 0.6;
    min-width: 20px;
}

.gads-sidebar-foot {
    padding: 10px 14px;
    border-top: 1px solid rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.gads-sidebar-foot button {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    cursor: pointer;
    width: 100%;
    transition: background .15s, color .15s;
}

.gads-sidebar-foot button:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.gads-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    min-width: 0;
}

.gads-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 28px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    flex-shrink: 0;
    gap: 12px;
}

.gads-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.gads-topbar-breadcrumb {
    font-size: 0.8rem;
    color: var(--gray-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gads-topbar-breadcrumb a {
    color: var(--gray-light);
    text-decoration: none;
}

.gads-topbar-breadcrumb a:hover { color: var(--blue); }

.gads-topbar-breadcrumb strong {
    color: var(--dark);
    font-weight: 600;
}

.gads-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.gads-q-counter {
    font-size: 0.78rem;
    color: var(--gray);
    background: var(--bg);
    padding: 4px 12px;
    border-radius: 99px;
    border: 1px solid var(--border);
    white-space: nowrap;
}

/* =============================================
   DASHBOARD PANEL
   ============================================= */
.gads-dashboard-panel {
    flex: 1;
    overflow-y: auto;
    padding: 28px 32px;
    background: var(--bg);
}

.gads-dashboard-panel::-webkit-scrollbar { width: 5px; }
.gads-dashboard-panel::-webkit-scrollbar-thumb { background: #ced4da; border-radius: 99px; }

.gads-dash-welcome {
    background: var(--blue) !important;
    border-radius: 10px !important;
    padding: 24px 28px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: none !important;
    box-shadow: none !important;
}

.gads-dash-welcome-text h2 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: -0.3px;
}

.gads-dash-welcome-text p {
    margin: 0;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.85) !important;
    max-width: 460px;
    line-height: 1.6;
}

.gads-dash-welcome-stat {
    text-align: center;
    flex-shrink: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 14px 20px;
    min-width: 80px;
}

.gads-dash-welcome-stat .stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px;
}

.gads-dash-welcome-stat .stat-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    font-weight: 600;
}

.gads-section-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gray-light);
    margin: 0 0 12px;
}

.gads-dash-modules {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.gads-dash-module-card {
    background: var(--white);
    border-radius: 8px;
    border: 1.5px solid var(--border);
    padding: 20px;
    transition: border-color .15s, box-shadow .15s, transform .15s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.gads-dash-module-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--border);
}

.gads-dash-module-card.unlocked { cursor: pointer; }
.gads-dash-module-card.unlocked::before { background: var(--blue); }
.gads-dash-module-card.unlocked:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(59,91,219,0.12);
    transform: translateY(-2px);
}

.gads-dash-module-card.done { border-color: #b2f2bb; }
.gads-dash-module-card.done::before { background: var(--green); }
.gads-dash-module-card.locked { opacity: 0.55; }
.gads-dash-module-card.locked::before { background: #ced4da; }

.gads-mod-ribbon {
    position: absolute;
    top: 14px; right: 14px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 3px 9px;
    border-radius: 99px;
}

.ribbon-done   { background: var(--green-light); color: #1a6b2e; }
.ribbon-active { background: var(--blue-light); color: var(--blue-dark); }
.ribbon-locked { background: #f1f3f5; color: #868e96; }

.gads-mod-card-num {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--blue);
    margin-bottom: 6px;
}

.gads-mod-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    padding-right: 72px;
    line-height: 1.4;
}

.gads-mod-card-desc {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 16px;
}

.gads-mod-card-bar-track {
    background: #e9ecef;
    border-radius: 99px;
    height: 5px;
    overflow: hidden;
    margin-bottom: 6px;
}

.gads-mod-card-bar-fill {
    background: var(--blue);
    height: 100%;
    border-radius: 99px;
    transition: width .6s ease;
}

.done .gads-mod-card-bar-fill { background: var(--green); }

.gads-mod-card-bar-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--gray-light);
    margin-bottom: 14px;
}

.gads-mod-card-bar-meta span:last-child { font-weight: 600; }

.gads-mod-card-action {
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.gads-complete-banner {
    background: var(--green-light);
    border: 1px solid #b2f2bb;
    border-radius: 8px;
    padding: 18px 24px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a6b2e;
    margin-top: 20px;
}

/* =============================================
   QUIZ PANEL
   ============================================= */
.gads-q-panel {
    flex: 1;
    overflow-y: auto;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.gads-q-panel::-webkit-scrollbar { width: 5px; }
.gads-q-panel::-webkit-scrollbar-thumb { background: #ced4da; border-radius: 99px; }

.gads-q-head { margin-bottom: 24px; flex-shrink: 0; }

.gads-q-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gads-q-label::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--blue);
    border-radius: 50%;
}

.gads-q-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.7;
    margin: 0;
}

.gads-q-hint {
    font-size: 0.8rem;
    color: var(--blue-dark);
    margin-top: 8px;
    background: var(--blue-light);
    padding: 6px 12px;
    border-radius: 5px;
    display: inline-block;
}

.gads-choices {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.gads-choice-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    cursor: pointer;
    transition: border-color .12s, background .12s;
    font-size: 0.875rem;
    color: var(--dark);
    line-height: 1.5;
    user-select: none;
    background: var(--white);
}

.gads-choice-item:hover:not(.gads-choice-disabled) {
    border-color: var(--blue);
    background: var(--blue-light);
}

.gads-choice-item.selected {
    border-color: var(--blue);
    background: var(--blue-light);
}

.gads-choice-item.gads-choice-correct {
    border-color: var(--green);
    background: var(--green-light);
}

.gads-choice-item.gads-choice-wrong {
    border-color: var(--red);
    background: var(--red-light);
}

.gads-choice-item.gads-choice-disabled { cursor: default; }

.gads-choice-marker {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1.5px solid #ced4da;
    background: var(--white);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray-light);
    transition: border-color .12s, background .12s, color .12s;
    margin-top: 1px;
}

.gads-choice-item.selected .gads-choice-marker {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
}

.gads-choice-item.gads-choice-correct .gads-choice-marker {
    border-color: var(--green);
    background: var(--green);
    color: var(--white);
}

.gads-choice-item.gads-choice-wrong .gads-choice-marker {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
}

.gads-choice-text { flex: 1; min-width: 0; }

.gads-choice-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* =============================================
   FEEDBACK
   ============================================= */
.gads-feedback {
    margin-top: 20px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.gads-feedback-result {
    font-size: 0.875rem;
    font-weight: 700;
    padding: 11px 16px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.gads-feedback-correct {
    background: var(--green-light);
    color: #1a6b2e;
    border-left: 3px solid var(--green);
}

.gads-feedback-wrong {
    background: var(--red-light);
    color: #9b1c1c;
    border-left: 3px solid var(--red);
}

.gads-feedback-answer {
    background: #f8fff9;
    border-left: 3px solid var(--green);
    padding: 12px 16px;
    border-radius: 0 6px 6px 0;
    font-size: 0.83rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.gads-feedback-answer strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--gray);
}

.gads-feedback-explanation {
    background: #f8f9ff;
    border-left: 3px solid var(--blue);
    padding: 14px 16px;
    border-radius: 0 6px 6px 0;
    font-size: 0.83rem;
    line-height: 1.8;
    color: #343a40;
}

.gads-feedback-explanation strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--gray);
}

.gads-feedback-explanation p {
    margin: 0 0 10px;
    color: #343a40;
    line-height: 1.8;
}

.gads-feedback-explanation p:last-child {
    margin-bottom: 0;
}

.gads-feedback-explanation ul {
    margin: 6px 0 10px;
    padding-left: 18px;
}

.gads-feedback-explanation ul li {
    margin-bottom: 6px;
    line-height: 1.7;
    color: #343a40;
}

.gads-feedback-explanation ul li strong {
    display: inline;
    font-size: inherit;
    text-transform: none;
    letter-spacing: normal;
    color: #1a1b2e;
}

.gads-explanation-source {
    font-size: 0.75rem !important;
    color: var(--gray-light) !important;
    margin-top: 10px !important;
    font-style: italic;
}

/* =============================================
   BOTTOM NAV BAR
   ============================================= */
.gads-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
    border-top: 1px solid var(--border);
    background: var(--white);
    flex-shrink: 0;
    gap: 12px;
}

.gads-nav-bar .gads-btn { width: auto; }

.gads-nav-center {
    font-size: 0.78rem;
    color: var(--gray-light);
    text-align: center;
    flex: 1;
    font-style: italic;
}

/* =============================================
   MODULE COMPLETE
   ============================================= */
.gads-module-complete {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.gads-module-complete h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px;
}

.gads-module-complete p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0 0 28px;
    max-width: 360px;
    line-height: 1.6;
}

.gads-module-complete .gads-btn { width: auto; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .gads-course-shell {
        flex-direction: column;
        height: auto;
        min-height: 0;
    }

    .gads-sidebar {
        width: 100%;
        max-height: none;
        height: auto;
        overflow: visible;
    }

    .gads-sidebar-modules {
        max-height: 160px;
        overflow-y: auto;
    }

    .gads-sidebar-foot {
        position: static;
        display: block;
        padding: 12px 20px;
    }

    .gads-sidebar-foot .gads-btn,
    .gads-sidebar-foot a.gads-btn {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .gads-q-panel,
    .gads-dashboard-panel {
        padding: 20px 18px;
    }

    .gads-topbar { padding: 10px 18px; }
    .gads-nav-bar { padding: 10px 18px; }

    .gads-dash-modules { grid-template-columns: 1fr; }

    .gads-dash-welcome {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .gads-auth-card { padding: 28px 20px; }
    .gads-q-panel { padding: 16px 16px; }
}
