/**
 * EVContractors.io — Installer Dashboard & Claim Page Styles
 * File: evc-dashboard.css
 * Location: /wp-content/themes/generatepress-child/
 *
 * Design system:
 *   Primary:    #1a3a2a (deep forest green)
 *   Accent:     #4ecdc4 (teal)
 *   Success:    #27ae60
 *   Warning:    #f39c12
 *   Error:      #e74c3c
 *   Background: #f5f7f6
 *   Card:       #ffffff
 *   Text:       #1a1a2e
 *   Muted:      #6b7280
 *
 *   Fonts: Plus Jakarta Sans (body), Barlow Condensed (headings)
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Barlow+Condensed:wght@600;700&display=swap');


/* ════════════════════════════════════════════
   RESET & LAYOUT
   ════════════════════════════════════════════ */

.evc-dash-wrapper,
.evc-claim-wrapper {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #f5f7f6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.evc-dash-wrapper {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}


/* ════════════════════════════════════════════
   SIDEBAR
   ════════════════════════════════════════════ */

.evc-dash-sidebar {
    width: 280px;
    min-height: 100vh;
    background: #1a3a2a;
    color: #ffffff;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    flex-shrink: 0;
}

.evc-dash-sidebar-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 24px;
}

.evc-dash-avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto 12px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
}

.evc-dash-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.evc-dash-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #4ecdc4;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
}

.evc-dash-company-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.evc-dash-tier-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.evc-tier-free { background: rgba(255,255,255,0.15); color: #a0aec0; }
.evc-tier-pro { background: rgba(78,205,196,0.2); color: #4ecdc4; }
.evc-tier-featured { background: rgba(243,156,18,0.2); color: #f5c842; }
.evc-tier-elite { background: rgba(155,89,182,0.2); color: #bb8fce; }
.evc-tier-founding { background: rgba(78,205,196,0.3); color: #4ecdc4; }


/* Sidebar Navigation */
.evc-dash-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.evc-dash-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s ease;
}

.evc-dash-nav-item:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}

.evc-dash-nav-item.active {
    background: rgba(78,205,196,0.15);
    color: #4ecdc4;
}

.evc-dash-nav-item svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.evc-dash-nav-item.active svg {
    opacity: 1;
}


/* Sidebar Footer */
.evc-dash-sidebar-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.evc-dash-logout {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s;
}

.evc-dash-logout:hover {
    color: #e74c3c;
}


/* ════════════════════════════════════════════
   MAIN CONTENT
   ════════════════════════════════════════════ */

.evc-dash-main {
    flex: 1;
    padding: 40px 48px;
    max-width: 900px;
}

.evc-dash-header {
    margin-bottom: 32px;
}

.evc-dash-header h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a3a2a;
    margin: 0 0 6px;
    letter-spacing: 0.3px;
}

.evc-dash-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}


/* ════════════════════════════════════════════
   STAT CARDS
   ════════════════════════════════════════════ */

.evc-dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.evc-dash-stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid #e8ebe9;
    transition: box-shadow 0.15s ease;
}

.evc-dash-stat-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.evc-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.evc-stat-views  { background: #eef9ff; color: #2d9cdb; }
.evc-stat-rfqs   { background: #e8f8f0; color: #27ae60; }
.evc-stat-complete { background: #fef7ec; color: #f39c12; }
.evc-stat-tier   { background: #f0ebf8; color: #8e44ad; }

.evc-stat-content {
    display: flex;
    flex-direction: column;
}

.evc-stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #1a3a2a;
    line-height: 1;
}

.evc-stat-label {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
    font-weight: 500;
}


/* ════════════════════════════════════════════
   CARDS
   ════════════════════════════════════════════ */

.evc-dash-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid #e8ebe9;
}

.evc-dash-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a3a2a;
    margin: 0 0 16px;
    letter-spacing: 0.2px;
}


/* Progress Bar */
.evc-progress-bar {
    width: 100%;
    height: 10px;
    background: #e8ebe9;
    border-radius: 8px;
    overflow: hidden;
    margin: 12px 0 6px;
}

.evc-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ecdc4, #27ae60);
    border-radius: 8px;
    transition: width 0.5s ease;
}

.evc-progress-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}


/* Quick Actions */
.evc-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.evc-quick-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #f5f7f6;
    border-radius: 8px;
    text-decoration: none;
    color: #1a3a2a;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s ease;
    border: 1px solid transparent;
}

.evc-quick-action:hover {
    background: #edf5f0;
    border-color: #4ecdc4;
    color: #1a3a2a;
}

.evc-quick-action svg {
    color: #4ecdc4;
    flex-shrink: 0;
}


/* Upgrade Card */
.evc-upgrade-card {
    background: linear-gradient(135deg, #1a3a2a 0%, #2d5a3f 100%);
    color: #ffffff;
    border: none;
}

.evc-upgrade-card h3 {
    color: #ffffff;
}

.evc-upgrade-card p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

.evc-upgrade-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 16px 0 24px;
}

.evc-upgrade-features span {
    font-size: 13px;
    color: #4ecdc4;
    font-weight: 500;
}

.evc-btn-upgrade {
    background: #4ecdc4 !important;
    color: #1a3a2a !important;
    font-weight: 600 !important;
}

.evc-btn-upgrade:hover {
    background: #45b8b0 !important;
}


/* Info Card */
.evc-info-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #f0f7ff;
    border-color: #d0e3f7;
}

.evc-info-card svg {
    color: #2d9cdb;
    flex-shrink: 0;
    margin-top: 2px;
}

.evc-info-card div {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
}

.evc-info-card a {
    color: #2d9cdb;
    font-weight: 500;
}


/* ════════════════════════════════════════════
   FORMS
   ════════════════════════════════════════════ */

.evc-dash-form {
    width: 100%;
}

.evc-form-row {
    margin-bottom: 20px;
}

.evc-form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.evc-form-row-3col {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
}

.evc-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.evc-form-full {
    grid-column: 1 / -1;
}

.evc-form-half {
    max-width: 360px;
}

.evc-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.evc-form-group label .req {
    color: #e74c3c;
}

.evc-form-group input[type="text"],
.evc-form-group input[type="email"],
.evc-form-group input[type="tel"],
.evc-form-group input[type="url"],
.evc-form-group input[type="number"],
.evc-form-group input[type="password"],
.evc-form-group select,
.evc-form-group textarea {
    padding: 10px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    width: 100%;
    box-sizing: border-box;
}

.evc-form-group input:focus,
.evc-form-group select:focus,
.evc-form-group textarea:focus {
    border-color: #4ecdc4;
    box-shadow: 0 0 0 3px rgba(78,205,196,0.15);
    outline: none;
}

.evc-form-group input::placeholder,
.evc-form-group textarea::placeholder {
    color: #9ca3af;
}

.evc-form-group input[type="file"] {
    padding: 8px;
    border-style: dashed;
    background: #f9fafb;
    cursor: pointer;
}

.evc-form-hint {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
    line-height: 1.4;
}

.evc-current-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e8ebe9;
}

.evc-current-logo img {
    border-radius: 6px;
    border: 1px solid #e8ebe9;
    object-fit: contain;
}

.evc-current-logo span {
    font-size: 13px;
    color: #6b7280;
}


/* Checkboxes */
.evc-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.evc-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #4ecdc4;
    cursor: pointer;
}

.evc-form-hint-inline {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}


/* States Grid */
.evc-states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 6px;
}

.evc-state-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.1s;
}

.evc-state-checkbox:hover {
    background: #f0f7f4;
}

.evc-state-checkbox input[type="checkbox"] {
    accent-color: #4ecdc4;
    cursor: pointer;
}


/* Form Actions */
.evc-form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #e8ebe9;
}


/* ════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════ */

.evc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.15s ease;
    line-height: 1.4;
}

.evc-btn-primary {
    background: #1a3a2a;
    color: #ffffff;
}

.evc-btn-primary:hover {
    background: #244e38;
    color: #ffffff;
}

.evc-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.3);
}

.evc-dash-main .evc-btn-outline,
.evc-claim-wrapper .evc-btn-outline {
    color: #1a3a2a;
    border-color: #d1d5db;
}

.evc-btn-outline:hover {
    border-color: #4ecdc4;
    color: #4ecdc4;
}

.evc-btn-ghost {
    background: transparent;
    color: #6b7280;
    padding: 10px 16px;
}

.evc-btn-ghost:hover {
    color: #1a3a2a;
    background: #f5f7f6;
}

.evc-btn-sm { padding: 7px 16px; font-size: 13px; }
.evc-btn-lg { padding: 14px 32px; font-size: 15px; }
.evc-btn-full { width: 100%; }


/* ════════════════════════════════════════════
   ALERTS
   ════════════════════════════════════════════ */

.evc-dash-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.evc-alert-success {
    background: #e8f8f0;
    color: #1e7a4a;
    border: 1px solid #a7e1c4;
}

.evc-alert-success svg { color: #27ae60; flex-shrink: 0; }

.evc-alert-error {
    background: #fdf0ef;
    color: #a93226;
    border: 1px solid #f5b7b1;
}

.evc-alert-error a {
    color: #a93226;
    font-weight: 600;
    text-decoration: underline;
}


/* ════════════════════════════════════════════
   ACCOUNT TAB
   ════════════════════════════════════════════ */

.evc-account-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.evc-account-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f1f2;
}

.evc-account-row:last-child { border-bottom: none; }

.evc-account-label {
    width: 140px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    flex-shrink: 0;
}

.evc-account-value {
    font-size: 14px;
    color: #1a1a2e;
}

.evc-account-value a {
    color: #2d9cdb;
    text-decoration: none;
    font-weight: 500;
}

.evc-account-value a:hover { text-decoration: underline; }


/* ════════════════════════════════════════════
   LOGIN GATE
   ════════════════════════════════════════════ */

.evc-dash-login-gate {
    max-width: 420px;
    margin: 80px auto;
    padding: 48px 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    text-align: center;
}

.evc-dash-logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.evc-dash-logo-block h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a3a2a;
    margin: 0;
}

.evc-dash-login-gate > p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Style WP login form */
.evc-dash-login-gate .login-username,
.evc-dash-login-gate .login-password {
    margin-bottom: 16px;
    text-align: left;
}

.evc-dash-login-gate .login-username label,
.evc-dash-login-gate .login-password label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.evc-dash-login-gate input[type="text"],
.evc-dash-login-gate input[type="password"] {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.evc-dash-login-gate input:focus {
    border-color: #4ecdc4;
    box-shadow: 0 0 0 3px rgba(78,205,196,0.15);
    outline: none;
}

.evc-dash-login-gate .login-remember {
    text-align: left;
    margin-bottom: 20px;
    font-size: 13px;
    color: #6b7280;
}

.evc-dash-login-gate .login-remember input {
    accent-color: #4ecdc4;
}

.evc-dash-login-gate input[type="submit"] {
    width: 100%;
    padding: 13px;
    background: #1a3a2a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

.evc-dash-login-gate input[type="submit"]:hover {
    background: #244e38;
}

.evc-dash-login-links {
    margin-top: 24px;
    font-size: 13px;
}

.evc-dash-login-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.15s;
}

.evc-dash-login-links a:hover { color: #4ecdc4; }

.evc-sep { color: #d1d5db; margin: 0 8px; }


/* ════════════════════════════════════════════
   EMPTY & PENDING STATES
   ════════════════════════════════════════════ */

.evc-dash-empty-state,
.evc-dash-pending-state {
    max-width: 480px;
    margin: 100px auto;
    text-align: center;
    padding: 48px;
}

.evc-dash-empty-state h2,
.evc-dash-pending-state h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #1a3a2a;
    margin: 20px 0 10px;
}

.evc-dash-empty-state p,
.evc-dash-pending-state p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}


/* ════════════════════════════════════════════
   CLAIM PAGE
   ════════════════════════════════════════════ */

.evc-claim-wrapper {
    padding: 48px 24px;
}

.evc-claim-container {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.evc-claim-form-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid #e8ebe9;
}

.evc-claim-header {
    margin-bottom: 28px;
}

.evc-claim-back {
    font-size: 13px;
    color: #6b7280;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
    transition: color 0.15s;
}

.evc-claim-back:hover { color: #4ecdc4; }

.evc-claim-header h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a3a2a;
    margin: 0 0 8px;
}

.evc-claim-header p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.evc-claim-terms {
    margin: 20px 0 24px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e8ebe9;
}

.evc-claim-disclaimer {
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}


/* Claim Preview Card */
.evc-claim-preview-section {
    position: sticky;
    top: 32px;
}

.evc-claim-preview-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid #e8ebe9;
    margin-bottom: 20px;
}

.evc-claim-preview-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    margin-bottom: 20px;
}

.evc-claim-preview-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    margin: 0 auto 16px;
    display: block;
    border: 1px solid #e8ebe9;
}

.evc-claim-preview-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: #1a3a2a;
    color: #4ecdc4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.evc-claim-preview-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a3a2a;
    margin: 0 0 8px;
}

.evc-claim-preview-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 20px;
}

.evc-claim-preview-location svg { color: #e74c3c; }


/* Claim Benefits */
.evc-claim-benefits {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid #e8ebe9;
}

.evc-claim-benefits h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a3a2a;
    margin: 0 0 16px;
}

.evc-claim-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.evc-claim-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
    padding: 8px 0;
    border-bottom: 1px solid #f0f1f2;
}

.evc-claim-benefits li:last-child { border-bottom: none; }

.evc-claim-benefits li svg { flex-shrink: 0; margin-top: 1px; }


/* ════════════════════════════════════════════
   CLAIM BUTTON ON PUBLIC LISTING
   ════════════════════════════════════════════ */

.evc-claim-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #edf5f0;
    color: #1a3a2a;
    border: 1.5px dashed #4ecdc4;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.evc-claim-btn:hover {
    background: #d4f0e7;
    border-style: solid;
    color: #1a3a2a;
}

.evc-claim-btn svg { color: #4ecdc4; }

.evc-claimed-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #e8f8f0;
    color: #1e7a4a;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.evc-claimed-badge.evc-pending {
    background: #fef7ec;
    color: #b7791f;
}


/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .evc-dash-wrapper {
        flex-direction: column;
    }

    .evc-dash-sidebar {
        width: 100%;
        min-height: auto;
        position: static;
        padding: 20px;
    }

    .evc-dash-sidebar-header {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding-bottom: 16px;
    }

    .evc-dash-avatar { width: 48px; height: 48px; margin: 0; }

    .evc-dash-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 4px;
        padding: 0;
    }

    .evc-dash-nav-item {
        white-space: nowrap;
        padding: 8px 14px;
        font-size: 13px;
    }

    .evc-dash-sidebar-footer {
        flex-direction: row;
        justify-content: space-between;
        padding-top: 16px;
    }

    .evc-dash-main {
        padding: 24px;
    }

    .evc-claim-container {
        grid-template-columns: 1fr;
    }

    .evc-claim-preview-section {
        position: static;
        order: -1;
    }
}

@media (max-width: 640px) {
    .evc-dash-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .evc-form-row-2col,
    .evc-form-row-3col {
        grid-template-columns: 1fr;
    }

    .evc-dash-header h1 {
        font-size: 24px;
    }

    .evc-dash-main {
        padding: 16px;
    }

    .evc-claim-form-section {
        padding: 24px 20px;
    }

    .evc-quick-actions {
        grid-template-columns: 1fr;
    }

    .evc-states-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ════════════════════════════════════════════
   LIST YOUR BUSINESS — Additional Styles
   Append this to the BOTTOM of evc-dashboard.css
   ════════════════════════════════════════════ */

/* 3-column form row (city / state / zip) */
.evc-form-row-3col {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .evc-form-row-3col {
        grid-template-columns: 1fr;
    }
}

/* Form section titles */
.evc-form-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a3a2a;
    margin: 0 0 12px;
    padding: 0;
}

/* "Already listed?" nudge box */
.evc-claim-already-listed {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    background: #f0f7ff;
    border: 1px solid #d0e3f7;
    border-radius: 8px;
    font-size: 14px;
    color: #2c5282;
    margin-bottom: 24px;
}

.evc-claim-already-listed svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #3182ce;
}

.evc-claim-already-listed a {
    color: #2b6cb0;
    font-weight: 600;
    text-decoration: underline;
}

.evc-claim-already-listed a:hover {
    color: #1a4971;
}

/* Success alert */
.evc-alert-success {
    background: #e8f8f0;
    color: #1e7a4a;
    border: 1px solid #a7e1c4;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.evc-alert-success strong {
    display: block;
    margin-bottom: 4px;
}

/* Select element styling to match inputs */
.evc-dash-form select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1a3a2a;
    background: #fff;
    appearance: auto;
    transition: border-color 0.2s ease;
}

.evc-dash-form select:focus {
    outline: none;
    border-color: #4ecdc4;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.15);
}

