/* ==========================================
   STYLE GÉNÉRAL ET CORPS DE PAGE (style.css)
   ========================================== */

/* Structure de la grille */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Style des Cartes d'actions */
.card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card h2 {
    font-size: 1.3rem;
    margin: 0 0 12px 0;
    color: #1e293b;
}

.card p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0 0 20px 0;
    line-height: 1.5;
    flex-grow: 1;
}

/* Menus de sélection sélectifs */
.quick-select {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.quick-select label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
}

.quick-select select {
    width: 100%;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    font-size: 0.9rem;
    background-color: #f8fafc;
    box-sizing: border-box;
}

/* Boutons et variations de couleurs */
.btn {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #2563eb;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease;
    box-sizing: border-box;
    text-align: center;
}

.btn:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #475569;
}

.btn-secondary:hover {
    background-color: #334155;
}

.btn-success {
    background-color: #16a34a;
}

.btn-success:hover {
    background-color: #15803d;
}
