/* LeafletDropPro — Client Portal Styles */

.ldp-portal-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ── Login ───────────────────────────────────────────────────────────────── */
.ldp-portal-login-card {
    max-width: 420px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,.10);
}

.ldp-portal-logo { text-align: center; margin-bottom: 28px; }
.ldp-portal-icon { font-size: 3rem; display: block; margin-bottom: 8px; }
.ldp-portal-logo h2 { font-size: 1.4rem; margin: 0 0 4px; color: #1d2327; }
.ldp-portal-logo p { color: #646970; margin: 0; }

/* ── Header ──────────────────────────────────────────────────────────────── */
.ldp-portal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

.ldp-portal-header h2 { margin: 0; color: #1d2327; }

/* ── Job cards ───────────────────────────────────────────────────────────── */
.ldp-portal-job-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    transition: box-shadow .15s;
}

.ldp-portal-job-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.10); }

.ldp-portal-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.ldp-portal-job-header h5 { margin: 0; font-size: 1rem; color: #1d2327; }

.ldp-portal-progress { margin-bottom: 16px; }

.ldp-portal-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.ldp-portal-stat {
    background: #f9fafb;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
}

.ldp-portal-stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1d2327;
}

.ldp-portal-stat-label {
    display: block;
    font-size: .72rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-top: 2px;
}

.ldp-portal-deadline {
    font-size: .85rem;
    color: #374151;
    padding-top: 10px;
    border-top: 1px solid #f3f4f6;
}

/* ── Badge (reused from admin) ───────────────────────────────────────────── */
.ldp-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.ldp-badge-active    { background: #d1fae5; color: #065f46; }
.ldp-badge-paused    { background: #fef3c7; color: #92400e; }
.ldp-badge-completed { background: #dbeafe; color: #1e40af; }
.ldp-badge-archived  { background: #f3f4f6; color: #374151; }
