/* LLC Oakland University Lean Experience Signup - Styles */

/* ── Wrapper ─────────────────────────────────────────────────────────────── */
.llc-ou-wrap {
    max-width: 900px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.llc-ou-header {
    background: linear-gradient(135deg, #1a5c2a 0%, #2d8a42 100%);
    color: #fff;
    padding: 32px 40px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    margin-bottom: 0;
}
.llc-ou-header h2 {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 700;
    color: #fff !important;
    border: none !important;
}
.llc-ou-subtitle {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
    color: #d4f5d4;
}

/* ── Form ────────────────────────────────────────────────────────────────── */
.llc-ou-form {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 32px 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.llc-ou-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.llc-ou-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.llc-ou-full {
    margin-bottom: 20px;
}
.llc-ou-field label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.llc-ou-field .req {
    color: #e53e3e;
}
.llc-ou-field input,
.llc-ou-field select {
    padding: 10px 14px;
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s;
    background: #fafafa;
    width: 100%;
    box-sizing: border-box;
}
.llc-ou-field input:focus,
.llc-ou-field select:focus {
    outline: none;
    border-color: #2d8a42;
    background: #fff;
}
.llc-ou-submit {
    text-align: center;
    margin-top: 24px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.llc-ou-btn {
    background: #2d8a42;
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}
.llc-ou-btn:hover { background: #1a5c2a; }
.llc-ou-btn-sm { padding: 8px 18px; font-size: 14px; }
.llc-ou-btn-xs { padding: 4px 10px; font-size: 12px; border-radius: 4px; }
.llc-btn-complete { background: #2d8a42; }
.llc-btn-complete:hover { background: #1a5c2a; }
.llc-btn-revert { background: #888; }
.llc-btn-revert:hover { background: #555; }
.llc-btn-delete { background: #e53e3e; }
.llc-btn-delete:hover { background: #c53030; }

/* ── Messages ────────────────────────────────────────────────────────────── */
.llc-ou-success {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 20px 0;
    color: #276749;
}
.llc-ou-success h3 {
    margin: 0 0 10px;
    color: #276749;
    font-size: 18px;
}
.llc-ou-success p { margin: 6px 0; }
.llc-ou-error {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 6px;
    padding: 12px 18px;
    margin: 16px 0;
    color: #c53030;
    font-weight: 500;
}

/* ── Dashboard ───────────────────────────────────────────────────────────── */
.llc-ou-dash-header {
    background: linear-gradient(135deg, #1a5c2a 0%, #2d8a42 100%);
    color: #fff;
    padding: 24px 32px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.llc-ou-dash-header h2 {
    margin: 0;
    font-size: 20px;
    color: #fff !important;
    border: none !important;
}
.llc-ou-stats { display: flex; gap: 10px; flex-wrap: wrap; }
.stat-pill {
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.stat-green { background: rgba(0,200,80,0.3); }
.stat-yellow { background: rgba(255,200,0,0.3); }

/* Filters */
.llc-ou-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.filter-pill {
    padding: 6px 16px;
    border-radius: 20px;
    background: #f0f0f0;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}
.filter-pill:hover { background: #ddd; color: #333; }
.filter-pill.active { background: #2d8a42; color: #fff; }

/* Bulk bar */
.llc-ou-bulk-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 6px 6px 0 0;
    padding: 10px 16px;
    margin-bottom: 0;
}

/* Table */
.llc-ou-table-wrap { overflow-x: auto; }
.llc-ou-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
}
.llc-ou-table th {
    background: #f5f5f5;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    color: #555;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-bottom: 2px solid #e0e0e0;
}
.llc-ou-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}
.llc-ou-table tr:hover td { background: #fafff9; }
.llc-ou-table tr.status-completed td { background: #f0fff4; }

/* Status badges */
.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}
.status-badge.status-completed { background: #c6f6d5; color: #276749; }
.status-badge.status-registered { background: #fefcbf; color: #744210; }
.cert-sent { color: #2d8a42; font-weight: 600; }

/* Actions */
.llc-actions { white-space: nowrap; }
.llc-actions form { margin: 0; }

/* Section */
.llc-ou-section {
    margin-top: 32px;
    padding: 20px 24px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}
.llc-ou-section h3 {
    margin: 0 0 14px;
    font-size: 15px;
    color: #444;
}
.llc-ou-inline-form {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    border: none;
    padding: 0;
    box-shadow: none;
}
.llc-ou-inline-form input {
    padding: 8px 14px;
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    font-size: 14px;
    min-width: 240px;
}

/* Login page */
.llc-ou-login {
    max-width: 400px;
    margin: 40px auto;
}
.llc-ou-login h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a5c2a;
}
.llc-ou-login .llc-ou-form {
    border-radius: 8px;
    border-top: 1px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 600px) {
    .llc-ou-row { flex-direction: column; }
    .llc-ou-form { padding: 20px; }
    .llc-ou-header { padding: 20px; }
    .llc-ou-dash-header { flex-direction: column; text-align: center; }
}
