/* ===================================================
   Nirmol Member Management System – Frontend Styles
   Nirmol Bangladesh | nirmol-bangladesh.org
   =================================================== */

:root {
    --nirmol-primary: #1a6b3c;
    --nirmol-primary-dark: #145230;
    --nirmol-primary-light: #2d9e5f;
    --nirmol-accent: #f9a825;
    --nirmol-danger: #c62828;
    --nirmol-info: #1565c0;
    --nirmol-text: #2c3e50;
    --nirmol-text-light: #666;
    --nirmol-border: #d8e8d8;
    --nirmol-bg: #f0f4f0;
    --nirmol-card-bg: #ffffff;
    --nirmol-radius: 10px;
    --nirmol-shadow: 0 2px 16px rgba(26,107,60,0.10);
    --nirmol-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

.nirmol-wrap {
    font-family: var(--nirmol-font);
    color: var(--nirmol-text);
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 16px 40px;
}

/* ===================== CARD ===================== */
.nirmol-card {
    background: var(--nirmol-card-bg);
    border-radius: var(--nirmol-radius);
    box-shadow: var(--nirmol-shadow);
    overflow: hidden;
    margin-bottom: 24px;
}
.nirmol-card--auth {
    max-width: 560px;
    margin: 40px auto;
}
.nirmol-card__header {
    background: linear-gradient(135deg, var(--nirmol-primary), var(--nirmol-primary-light));
    color: #fff;
    padding: 32px 36px 24px;
    text-align: center;
}
.nirmol-card__header h2 {
    margin: 0 0 8px;
    font-size: 1.6rem;
    color: #fff;
}
.nirmol-card__header p {
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}
.nirmol-logo-mark {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}
.nirmol-card__footer {
    padding: 18px 36px;
    text-align: center;
    border-top: 1px solid var(--nirmol-border);
    font-size: 0.9rem;
    color: var(--nirmol-text-light);
}
.nirmol-card__footer a { color: var(--nirmol-primary); text-decoration: none; font-weight: 600; }

/* ===================== FORMS ===================== */
.nirmol-form {
    padding: 28px 36px;
}
.nirmol-form__group {
    margin-bottom: 20px;
}
.nirmol-form__row { display: flex; gap: 16px; }
.nirmol-form__row--two > .nirmol-form__group { flex: 1; }
.nirmol-form__group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--nirmol-text);
    margin-bottom: 6px;
}
.nirmol-form__group input,
.nirmol-form__group textarea,
.nirmol-form__group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--nirmol-border);
    border-radius: 7px;
    font-size: 0.95rem;
    font-family: var(--nirmol-font);
    color: var(--nirmol-text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.nirmol-form__group input:focus,
.nirmol-form__group textarea:focus {
    border-color: var(--nirmol-primary);
    box-shadow: 0 0 0 3px rgba(26,107,60,0.10);
}
.nirmol-form__group input:disabled { background: #f5f5f5; cursor: not-allowed; }
.nirmol-form__group textarea { resize: vertical; }
.nirmol-input-icon { position: relative; }
.nirmol-input-icon input { padding-right: 44px; }
.nirmol-toggle-pw {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--nirmol-text-light);
    padding: 4px;
}
.nirmol-label-link { font-weight: 400; font-size: 0.83rem; color: var(--nirmol-primary); text-decoration: none; }
.nirmol-label-link:hover { text-decoration: underline; }
.nirmol-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-weight: 400; font-size: 0.9rem; }
.nirmol-checkbox input[type="checkbox"] { width: auto; flex-shrink: 0; margin-top: 2px; accent-color: var(--nirmol-primary); }
.required { color: var(--nirmol-danger); margin-left: 2px; }
.nirmol-help-text { font-size: 0.8rem; color: var(--nirmol-text-light); margin: 4px 0 0; }
.nirmol-form__actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.nirmol-form__group--inline { display: flex; align-items: center; }

/* ===================== BUTTONS ===================== */
.nirmol-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 7px;
    font-size: 0.93rem;
    font-weight: 600;
    font-family: var(--nirmol-font);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.18s;
    white-space: nowrap;
}
.nirmol-btn--primary { background: var(--nirmol-primary); color: #fff; border-color: var(--nirmol-primary); }
.nirmol-btn--primary:hover { background: var(--nirmol-primary-dark); border-color: var(--nirmol-primary-dark); color: #fff; }
.nirmol-btn--outline { background: transparent; color: var(--nirmol-primary); border-color: var(--nirmol-primary); }
.nirmol-btn--outline:hover { background: var(--nirmol-primary); color: #fff; }
.nirmol-btn--danger { background: var(--nirmol-danger); color: #fff; border-color: var(--nirmol-danger); }
.nirmol-btn--danger:hover { background: #a31515; border-color: #a31515; color: #fff; }
.nirmol-btn--full { width: 100%; }
.nirmol-btn--sm { padding: 7px 16px; font-size: 0.85rem; }
.nirmol-btn--xs { padding: 4px 10px; font-size: 0.78rem; border-radius: 5px; }
.nirmol-btn--icon { background: transparent; border: none; padding: 6px 10px; font-size: 1.1rem; cursor: pointer; color: var(--nirmol-text); position: relative; }

/* ===================== NOTICES ===================== */
.nirmol-notice {
    padding: 12px 18px;
    border-radius: 7px;
    font-size: 0.9rem;
    margin: 16px 0;
}
.nirmol-notice--success { background: #e8f5e9; color: #1b5e20; border-left: 4px solid #4caf50; }
.nirmol-notice--error   { background: #ffebee; color: #b71c1c; border-left: 4px solid #f44336; }
.nirmol-notice--info    { background: #e3f2fd; color: #0d47a1; border-left: 4px solid #2196f3; }
.nirmol-notice--warning { background: #fff8e1; color: #e65100; border-left: 4px solid #ff9800; }
.nirmol-form-message { border-radius: 7px; padding: 12px 18px; font-size: 0.9rem; margin: 16px 36px; }
.nirmol-form-message.success { background: #e8f5e9; color: #1b5e20; border-left: 4px solid #4caf50; }
.nirmol-form-message.error   { background: #ffebee; color: #b71c1c; border-left: 4px solid #f44336; }

/* ===================== DASHBOARD ===================== */
.nirmol-dashboard-wrap { max-width: 1200px; }
.nirmol-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--nirmol-primary);
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--nirmol-radius);
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.nirmol-topbar__brand { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; font-weight: 700; }
.nirmol-brand-icon { font-size: 1.4rem; }
.nirmol-topbar__actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.nirmol-badge {
    background: #ff5252;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-left: 2px;
}

/* Notifications panel */
.nirmol-notif-panel {
    background: #fff;
    border: 1px solid var(--nirmol-border);
    border-radius: var(--nirmol-radius);
    box-shadow: var(--nirmol-shadow);
    position: absolute;
    right: 0;
    top: 60px;
    width: 340px;
    max-height: 400px;
    z-index: 1000;
    overflow: hidden;
}
.nirmol-wrap { position: relative; }
.nirmol-notif-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--nirmol-border);
    background: #f8faf8;
}
.nirmol-notif-panel__list { overflow-y: auto; max-height: 320px; }
.nirmol-notif-item { padding: 12px 16px; border-bottom: 1px solid #f0f0f0; font-size: 0.88rem; }
.nirmol-notif-item--unread { background: #f0faf5; }
.nirmol-notif-item p { margin: 0 0 4px; }
.nirmol-notif-item small { color: var(--nirmol-text-light); }
.nirmol-notif-empty { padding: 20px; text-align: center; color: var(--nirmol-text-light); }

/* Dashboard grid */
.nirmol-dashboard-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: start;
}
.nirmol-sidebar {
    position: sticky;
    top: 20px;
}
.nirmol-profile-card {
    background: #fff;
    border-radius: var(--nirmol-radius);
    box-shadow: var(--nirmol-shadow);
    padding: 24px 20px;
    text-align: center;
    margin-bottom: 16px;
}
.nirmol-avatar { margin: 0 auto 14px; }
.nirmol-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--nirmol-primary);
}
.nirmol-avatar--lg img { width: 120px; height: 120px; }
.nirmol-profile-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.nirmol-role-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.nirmol-role-badge--member { background: #e8f5e9; color: #1b5e20; }
.nirmol-role-badge--volunteer { background: #e3f2fd; color: #0d47a1; }
.nirmol-role-badge--pending_member { background: #fff8e1; color: #e65100; }
.nirmol-role-badge--administrator { background: #f3e5f5; color: #4a148c; }
.nirmol-profile-meta { text-align: left; margin-bottom: 12px; }
.nirmol-profile-meta div { font-size: 0.85rem; color: var(--nirmol-text-light); margin-bottom: 5px; display: flex; align-items: center; gap: 6px; }
.nirmol-profile-meta span { font-size: 1rem; }
.nirmol-bio { font-size: 0.85rem; color: var(--nirmol-text-light); text-align: left; margin-bottom: 14px; }

/* Sidebar nav */
.nirmol-dash-nav { background: #fff; border-radius: var(--nirmol-radius); box-shadow: var(--nirmol-shadow); overflow: hidden; }
.nirmol-dash-nav__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: var(--nirmol-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.15s;
    cursor: pointer;
}
.nirmol-dash-nav__item:last-child { border-bottom: none; }
.nirmol-dash-nav__item:hover, .nirmol-dash-nav__item.active {
    background: linear-gradient(135deg, var(--nirmol-primary), var(--nirmol-primary-light));
    color: #fff;
}
.nirmol-main {
    background: #fff;
    border-radius: var(--nirmol-radius);
    box-shadow: var(--nirmol-shadow);
    padding: 28px 30px;
    min-height: 500px;
}

/* ===================== SECTION TITLES ===================== */
.nirmol-section-title { margin: 0 0 20px; font-size: 1.15rem; color: var(--nirmol-primary); }

/* ===================== QUICK ACTIONS ===================== */
.nirmol-quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}
.nirmol-qa-card {
    background: var(--nirmol-bg);
    border: 1.5px solid var(--nirmol-border);
    border-radius: var(--nirmol-radius);
    padding: 18px 12px;
    text-align: center;
    text-decoration: none;
    color: var(--nirmol-text);
    transition: all 0.18s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.nirmol-qa-card:hover { border-color: var(--nirmol-primary); background: #e8f5e9; color: var(--nirmol-primary); transform: translateY(-2px); }
.nirmol-qa-icon { font-size: 1.7rem; }
.nirmol-qa-label { font-size: 0.82rem; font-weight: 600; }

/* ===================== STATS ===================== */
.nirmol-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}
.nirmol-stat-card {
    background: var(--nirmol-bg);
    border-radius: var(--nirmol-radius);
    padding: 20px;
    text-align: center;
    border: 1.5px solid var(--nirmol-border);
}
.nirmol-stat-number { font-size: 2rem; font-weight: 800; color: var(--nirmol-primary); display: block; }
.nirmol-stat-label { font-size: 0.8rem; color: var(--nirmol-text-light); margin-top: 4px; display: block; }

/* ===================== WIDGETS ===================== */
.nirmol-widget { background: var(--nirmol-bg); border-radius: 8px; padding: 20px; margin-bottom: 20px; }
.nirmol-widget__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.nirmol-widget__header h4 { margin: 0; font-size: 1rem; }
.nirmol-widget__header a { font-size: 0.85rem; color: var(--nirmol-primary); text-decoration: none; }

/* ===================== TABLES ===================== */
.nirmol-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.nirmol-table th {
    background: var(--nirmol-primary);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.nirmol-table td { padding: 10px 14px; border-bottom: 1px solid var(--nirmol-border); vertical-align: middle; }
.nirmol-table tr:last-child td { border-bottom: none; }
.nirmol-table tr:hover td { background: #f0faf5; }

/* ===================== STATUS BADGES ===================== */
.nirmol-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: capitalize;
}
.nirmol-status--pending  { background: #fff8e1; color: #e65100; }
.nirmol-status--approved, .nirmol-status--publish { background: #e8f5e9; color: #1b5e20; }
.nirmol-status--rejected, .nirmol-status--trash   { background: #ffebee; color: #b71c1c; }

/* ===================== APP TYPES ===================== */
.nirmol-app-types, .nirmol-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.nirmol-app-type-btn, .nirmol-app-type-card {
    padding: 14px 18px;
    border: 1.5px solid var(--nirmol-border);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--nirmol-font);
    transition: all 0.18s;
    text-align: center;
}
.nirmol-app-type-card { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 22px 12px; }
.nirmol-app-type-icon { font-size: 2rem; }
.nirmol-app-type-name { font-size: 0.85rem; font-weight: 600; color: var(--nirmol-text); }
.nirmol-app-type-btn:hover, .nirmol-app-type-card:hover,
.nirmol-app-type-btn.selected, .nirmol-app-type-card.selected {
    border-color: var(--nirmol-primary);
    background: #e8f5e9;
    color: var(--nirmol-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26,107,60,0.12);
}

/* ===================== POLLS ===================== */
.nirmol-poll-card {
    background: var(--nirmol-bg);
    border-radius: var(--nirmol-radius);
    padding: 24px;
    margin-bottom: 20px;
    border: 1.5px solid var(--nirmol-border);
}
.nirmol-poll-card h4 { margin: 0 0 8px; font-size: 1.05rem; color: var(--nirmol-primary); }
.nirmol-poll-card h3 { margin: 0 0 8px; font-size: 1.1rem; color: var(--nirmol-primary); }
.nirmol-poll-desc, .nirmol-poll-ends { margin: 0 0 12px; color: var(--nirmol-text-light); font-size: 0.9rem; }
.nirmol-poll-options { display: flex; flex-direction: column; gap: 8px; }
.nirmol-poll-option {
    padding: 11px 18px;
    border: 1.5px solid var(--nirmol-border);
    border-radius: 7px;
    background: #fff;
    cursor: pointer;
    font-size: 0.92rem;
    font-family: var(--nirmol-font);
    text-align: left;
    transition: all 0.18s;
}
.nirmol-poll-option:hover { border-color: var(--nirmol-primary); background: #e8f5e9; color: var(--nirmol-primary); }
.nirmol-poll-results { margin-top: 12px; }
.nirmol-poll-result-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.nirmol-poll-result-label { font-size: 0.88rem; width: 140px; flex-shrink: 0; font-weight: 500; }
.nirmol-poll-bar-wrap { flex: 1; background: #e0e0e0; border-radius: 4px; height: 18px; overflow: hidden; }
.nirmol-poll-bar { background: var(--nirmol-primary); height: 100%; border-radius: 4px; transition: width 0.6s ease; }
.nirmol-poll-result-pct { font-size: 0.82rem; color: var(--nirmol-text-light); width: 80px; text-align: right; }
.nirmol-poll-total { font-size: 0.82rem; color: var(--nirmol-text-light); margin-top: 6px; }
.nirmol-poll-message { margin-top: 10px; }

/* ===================== ACTIVITY LOG ===================== */
.nirmol-activity-list { list-style: none; padding: 0; margin: 0; }
.nirmol-activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--nirmol-border);
    font-size: 0.9rem;
}
.nirmol-activity-item:last-child { border-bottom: none; }
.nirmol-activity-action { font-weight: 700; color: var(--nirmol-primary); min-width: 140px; }
.nirmol-activity-desc { color: var(--nirmol-text-light); flex: 1; }
.nirmol-activity-time { color: #aaa; font-size: 0.8rem; white-space: nowrap; }

/* ===================== EMPTY STATE ===================== */
.nirmol-empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--nirmol-text-light);
}
.nirmol-empty-icon { font-size: 3rem; display: block; margin-bottom: 12px; }
.nirmol-empty-state p { font-size: 1rem; margin-bottom: 20px; }

/* ===================== PROFILE LAYOUT ===================== */
.nirmol-profile-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    padding: 28px 36px;
}
.nirmol-avatar-section { text-align: center; }
.nirmol-avatar-section label { display: block; margin: 12px auto 4px; }

/* ===================== BLOG ===================== */
.nirmol-blog-wrap .nirmol-form { padding: 28px 36px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .nirmol-dashboard-grid { grid-template-columns: 1fr; }
    .nirmol-sidebar { position: static; }
    .nirmol-quick-actions, .nirmol-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .nirmol-form { padding: 20px 18px; }
    .nirmol-card__header { padding: 24px 20px 18px; }
    .nirmol-card__footer { padding: 14px 18px; }
    .nirmol-form__row { flex-direction: column; gap: 0; }
    .nirmol-quick-actions, .nirmol-stats-grid, .nirmol-app-types, .nirmol-app-grid { grid-template-columns: repeat(2, 1fr); }
    .nirmol-profile-layout { grid-template-columns: 1fr; }
    .nirmol-topbar { flex-direction: column; text-align: center; }
    .nirmol-notif-panel { width: 100%; right: auto; left: 0; }
    .nirmol-poll-result-item { flex-wrap: wrap; }
    .nirmol-poll-result-label { width: 100%; }
}
@media (max-width: 420px) {
    .nirmol-quick-actions, .nirmol-stats-grid, .nirmol-app-types, .nirmol-app-grid { grid-template-columns: 1fr; }
}

/* ===================== PROFILE SECTIONS (v1.1) ===================== */
.nirmol-form-section {
    background: #fafcfa;
    border: 1.5px solid var(--nirmol-border);
    border-radius: var(--nirmol-radius);
    padding: 22px 24px;
    margin-bottom: 22px;
}
.nirmol-form-section-title {
    margin: 0 0 18px;
    font-size: 1rem;
    color: var(--nirmol-primary);
    border-bottom: 2px solid var(--nirmol-border);
    padding-bottom: 10px;
}
.nirmol-form__row--three { display: flex; gap: 14px; }
.nirmol-form__row--three > .nirmol-form__group { flex: 1; }
.nirmol-form__group--span2 { flex: 2 !important; }
.nirmol-profile-summary { margin-top: 16px; text-align: left; }
.nirmol-profile-summary-item { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--nirmol-border); font-size: 0.85rem; }
.nirmol-profile-summary-item:last-child { border-bottom: none; }
.nirmol-profile-summary-label { color: var(--nirmol-text-light); }

/* ===================== RADIO / CHECKBOX GROUPS (v1.1) ===================== */
.nirmol-radio-group, .nirmol-checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.nirmol-radio-label, .nirmol-checkbox-label {
    display: flex; align-items: center; gap: 10px;
    cursor: pointer; font-weight: 400; font-size: 0.92rem;
    padding: 8px 14px; border: 1.5px solid var(--nirmol-border);
    border-radius: 6px; transition: all 0.15s;
}
.nirmol-radio-label:hover, .nirmol-checkbox-label:hover { border-color: var(--nirmol-primary); background: #f0faf5; }
.nirmol-radio-label input, .nirmol-checkbox-label input { accent-color: var(--nirmol-primary); }

/* ===================== FORM HEADING FIELD ===================== */
.nirmol-form-heading { margin: 22px 0 4px; }
.nirmol-form-heading h4 { margin: 0; color: var(--nirmol-primary); border-bottom: 2px solid var(--nirmol-border); padding-bottom: 8px; font-size: 0.95rem; }

/* ===================== POLL VOTE CHANGE/WITHDRAW (v1.1) ===================== */
.nirmol-poll-option--selected { background: #e8f5e9 !important; border-color: var(--nirmol-primary) !important; color: var(--nirmol-primary) !important; font-weight: 700; }
.nirmol-poll-vote-actions { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.nirmol-poll-result-item--selected .nirmol-poll-result-label { font-weight: 700; color: var(--nirmol-primary); }
.nirmol-poll-result-item--selected .nirmol-poll-bar { background: var(--nirmol-primary-light); }

/* ===================== APPLICATION RESPONSE TABLE ===================== */
.nirmol-response-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.nirmol-response-table tr:not(:last-child) { border-bottom: 1px solid var(--nirmol-border); }
.nirmol-response-label { padding: 8px 12px 8px 0; color: var(--nirmol-text-light); font-weight: 600; width: 180px; vertical-align: top; }
.nirmol-response-value { padding: 8px 0 8px 12px; }
.nirmol-divider { border: none; border-top: 1.5px solid var(--nirmol-border); margin: 0 0 24px; }
.nirmol-form-desc { color: #666; font-size: 0.9rem; margin-bottom: 16px; }
.nirmol-app-type-badge { display: inline-block; background: #e8f5e9; color: var(--nirmol-primary); font-size: 0.7rem; padding: 2px 7px; border-radius: 10px; margin-top: 4px; }

/* ===================== POLL INFO STATE ===================== */
.nirmol-form-message.info { background: #e3f2fd; color: #0d47a1; border-left: 4px solid #2196f3; }

@media (max-width: 640px) {
    .nirmol-form__row--three { flex-direction: column; gap: 0; }
    .nirmol-form-section { padding: 16px; }
}
