:root {
    --primary: #000091;
    --primary-hover: #1212ff;
    --success: #18753c;
    --error: #ce0500;
    --text: #161616;
    --text-light: #666666;
    --bg-light: #f6f6f6;
    --border: #e5e5e5;
    --shadow: 0 8px 24px rgba(0, 0, 145, 0.06);
}

body { font-family: 'Segoe UI', system-ui, sans-serif; margin: 0; color: var(--text); background: var(--bg-light); line-height: 1.6; }

/* Header & Logo */
.fr-header { background: white; padding: 0.8rem 10%; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--primary); box-shadow: 0 2px 10px rgba(0,0,0,0.03); position: sticky; top: 0; z-index: 1000; }
.brand-wrapper { display: flex; align-items: center; gap: 20px; }
.marianne { font-weight: 800; text-transform: uppercase; line-height: 1; border-left: 2px solid black; padding-left: 8px; font-size: 0.75rem; }
.logo-ft { color: var(--primary); font-weight: 900; font-size: 1.5rem; letter-spacing: -1px; text-decoration: none; }

/* Dashboard & Cards */
.main-content { max-width: 1200px; margin: 30px auto; padding: 0 20px; }
.card { background: white; padding: 25px; border: 1px solid var(--border); box-shadow: var(--shadow); margin-bottom: 25px; }
.hero-section { background: var(--primary); color: white; padding: 2.5rem 10%; margin-bottom: 2rem; }

/* Buttons & Badges */
.btn { padding: 10px 20px; font-weight: 700; text-decoration: none; border-radius: 0; cursor: pointer; transition: 0.2s; border: none; display: inline-block; font-size: 0.9rem; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-danger { background: #fee9e9; color: var(--error); }

.status-badge { padding: 4px 12px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }
.status-open { background: #e7f6ed; color: var(--success); }
.status-closed { background: #fee9e9; color: var(--error); }
.badge-attente { background: #eee; color: #666; }
.badge-entretien { background: #e8edff; color: var(--primary); }
.badge-accepte { background: #e7f6ed; color: var(--success); }
.badge-refuse { background: #fee9e9; color: var(--error); }

/* Elements */
.user-avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--primary); object-fit: cover; }
.timeline-item { border-left: 3px solid var(--primary); padding-left: 20px; margin-bottom: 20px; }
.form-control { width: 100%; padding: 12px; border: 2px solid var(--bg-light); background: var(--bg-light); font-family: inherit; box-sizing: border-box; }
.form-control:focus { outline: none; border-color: var(--primary); background: white; }

/* Grid Jobs */
.grid-jobs { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 20px; }
.job-card { background: white; border-bottom: 4px solid var(--primary); padding: 20px; display: flex; flex-direction: column; transition: 0.3s; }
.job-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }