/* ============================================================
   LLC Lean Experience Signup & Dashboard Styles
   ============================================================ */

/* ── Signup Form ─────────────────────────────────────────── */
.llc-le-signup-wrap {
    max-width: 640px;
    margin: 0 auto 40px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.llc-le-signup-header {
    background: #1a3a5c;
    color: #fff;
    padding: 28px 36px 22px;
    border-radius: 8px 8px 0 0;
    text-align: center;
}

.llc-le-signup-header h2 {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 700;
    color: #fff !important;
}

.llc-le-signup-header p {
    margin: 0;
    font-size: 15px;
    opacity: 0.85;
    color: #fff !important;
}

.llc-le-signup-form {
    background: #fff;
    border: 1px solid #dde3ea;
    border-top: none;
    padding: 32px 36px 28px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.llc-le-form-group {
    margin-bottom: 20px;
}

.llc-le-form-row {
    display: flex;
    gap: 16px;
}

.llc-le-form-row .llc-le-form-group {
    flex: 1;
}

.llc-le-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}

.llc-le-form-group input,
.llc-le-form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ccd3db;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
    background: #fafbfc;
    box-sizing: border-box;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.llc-le-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.llc-le-form-group input:focus,
.llc-le-form-group select:focus {
    outline: none;
    border-color: #1a3a5c;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26,58,92,0.1);
}

.required {
    color: #e74c3c;
}

.llc-le-submit-group {
    margin-top: 8px;
}

.llc-le-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: #f5a623;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.1s;
}

.llc-le-submit-btn:hover {
    background: #e09520;
    transform: translateY(-1px);
}

.llc-le-submit-btn:active {
    transform: translateY(0);
}

.llc-le-form-note {
    font-size: 12px;
    color: #888;
    margin: 12px 0 0;
    text-align: center;
}

/* ── Success / Error Boxes ───────────────────────────────── */
.llc-le-success-box {
    max-width: 640px;
    margin: 0 auto 30px;
    background: #eafaf1;
    border: 1px solid #27ae60;
    border-radius: 8px;
    padding: 28px 36px;
    text-align: center;
    color: #1e8449;
}

.llc-le-success-icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 12px;
}

.llc-le-success-box p {
    font-size: 17px;
    margin: 0 0 8px;
    color: #1e8449;
}

.llc-le-error-box {
    max-width: 640px;
    margin: 0 auto 16px;
    background: #fdecea;
    border: 1px solid #e74c3c;
    border-radius: 6px;
    padding: 14px 20px;
    color: #c0392b;
    font-size: 15px;
}

/* ── Dashboard Login ─────────────────────────────────────── */
.llc-le-login-wrap {
    max-width: 420px;
    margin: 40px auto;
}

.llc-le-login-box {
    background: #fff;
    border: 1px solid #dde3ea;
    border-radius: 8px;
    padding: 36px 40px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    text-align: center;
}

.llc-le-login-box h2 {
    margin: 0 0 8px;
    font-size: 24px;
    color: #1a3a5c;
}

.llc-le-login-box p {
    color: #666;
    margin-bottom: 24px;
    font-size: 15px;
}

.llc-le-login-box .llc-le-form-group {
    text-align: left;
}

/* ── Dashboard ───────────────────────────────────────────── */
.llc-le-dashboard-wrap {
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.llc-le-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a3a5c;
    color: #fff;
    padding: 20px 28px;
    border-radius: 8px 8px 0 0;
    flex-wrap: wrap;
    gap: 12px;
}

.llc-le-dash-header h2 {
    margin: 0;
    font-size: 22px;
    color: #fff !important;
}

.llc-le-dash-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.llc-le-attendee-count {
    font-size: 14px;
    opacity: 0.85;
}

.llc-le-logout-btn {
    background: rgba(255,255,255,0.15);
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s;
}

.llc-le-logout-btn:hover {
    background: rgba(255,255,255,0.25);
}

.llc-le-dash-success {
    background: #eafaf1;
    border: 1px solid #27ae60;
    color: #1e8449;
    padding: 12px 20px;
    margin: 16px 0;
    border-radius: 6px;
    font-size: 15px;
}

.llc-le-dash-error {
    background: #fdecea;
    border: 1px solid #e74c3c;
    color: #c0392b;
    padding: 12px 20px;
    margin: 16px 0;
    border-radius: 6px;
    font-size: 15px;
}

.llc-le-dash-filters {
    background: #f7f9fb;
    border: 1px solid #dde3ea;
    border-top: none;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.llc-le-filter-btn {
    padding: 5px 14px;
    border: 1px solid #ccd3db;
    border-radius: 20px;
    font-size: 13px;
    color: #444;
    text-decoration: none;
    background: #fff;
    transition: all 0.2s;
}

.llc-le-filter-btn:hover,
.llc-le-filter-btn.active {
    background: #1a3a5c;
    border-color: #1a3a5c;
    color: #fff !important;
}

.llc-le-dash-actions-bar {
    padding: 10px 20px;
    background: #f7f9fb;
    border: 1px solid #dde3ea;
    border-top: none;
    text-align: right;
}

.llc-le-export-btn {
    font-size: 13px;
    color: #1a3a5c;
    text-decoration: none;
    border: 1px solid #1a3a5c;
    padding: 5px 14px;
    border-radius: 4px;
    transition: all 0.2s;
}

.llc-le-export-btn:hover {
    background: #1a3a5c;
    color: #fff !important;
}

/* ── Attendee Table ──────────────────────────────────────── */
.llc-le-table-wrap {
    overflow-x: auto;
    border: 1px solid #dde3ea;
    border-top: none;
}

.llc-le-attendee-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
}

.llc-le-attendee-table thead tr {
    background: #2c3e50;
    color: #fff;
}

.llc-le-attendee-table thead th {
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

.llc-le-attendee-table tbody tr {
    border-bottom: 1px solid #eef0f3;
    transition: background 0.15s;
}

.llc-le-attendee-table tbody tr:hover {
    background: #f7f9fb;
}

.llc-le-attendee-table tbody tr.cert-sent {
    background: #f0faf4;
}

.llc-le-attendee-table tbody td {
    padding: 11px 14px;
    color: #333;
    vertical-align: middle;
}

.llc-le-attendee-table tbody td a {
    color: #1a3a5c;
}

.llc-le-no-data {
    text-align: center;
    color: #888;
    padding: 30px !important;
    font-style: italic;
}

.llc-le-cert-sent-badge {
    background: #27ae60;
    color: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.llc-le-cert-pending-badge {
    background: #f0f0f0;
    color: #888;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.llc-le-del-btn {
    background: none;
    border: 1px solid #e74c3c;
    color: #e74c3c;
    border-radius: 4px;
    padding: 3px 8px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.llc-le-del-btn:hover {
    background: #e74c3c;
    color: #fff;
}

/* ── Certificate Actions ─────────────────────────────────── */
.llc-le-cert-actions {
    background: #fffbf0;
    border: 1px solid #f5a623;
    border-top: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.llc-le-cert-send-btn {
    background: #f5a623;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.llc-le-cert-send-btn:hover {
    background: #e09520;
}

.llc-le-cert-note {
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* ── Password Section ────────────────────────────────────── */
.llc-le-password-section {
    background: #f7f9fb;
    border: 1px solid #dde3ea;
    border-top: none;
    padding: 20px 24px;
    border-radius: 0 0 8px 8px;
}

.llc-le-password-section h3 {
    margin: 0 0 14px;
    font-size: 16px;
    color: #2c3e50;
}

.llc-le-cp-btn {
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 9px 18px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.llc-le-cp-btn:hover {
    background: #1a2a3a;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
    .llc-le-form-row {
        flex-direction: column;
        gap: 0;
    }

    .llc-le-signup-form,
    .llc-le-signup-header {
        padding: 20px 18px;
    }

    .llc-le-dash-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .llc-le-cert-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
