/* assets/css/style.css */
:root {
    --primary-color: #d32f2f; /* Rouge Farissia */
    --secondary-color: #455a64; /* Gris Industriel */
    --accent-color: #ffc107; /* Jaune Sécurité */
    --background-light: #f4f6f8;
    --text-dark: #2c3e50;
    --sidebar-width: 250px;
}

body {
    background-color: var(--background-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
}

/* Login Page Style */
.login-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #263238 100%);
}

.login-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
    border-top: 5px solid var(--primary-color);
}

.login-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}
.login-logo img {
    max-height: 80px;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: bold;
}
.btn-primary-custom:hover {
    background-color: #b71c1c;
}

/* Sidebar & Layout (pour plus tard) */
.sidebar {
    height: 100vh;
    width: var(--sidebar-width);
    position: fixed;
    top: 0;
    left: 0;
    background-color: #263238;
    color: white;
    padding-top: 1rem;
    transition: all 0.3s;
}

.main-content {
    margin-left: var(--sidebar-width);
    padding: 2rem;
    transition: all 0.3s;
}

/* Support RTL (Arabe) */
body[dir="rtl"] .sidebar {
    right: 0;
    left: auto;
}
body[dir="rtl"] .main-content {
    margin-right: var(--sidebar-width);
    margin-left: 0;
}