/* =========================
   ROW
========================= */
.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}

/* =========================
   COLONNES
========================= */
.col-sm-4 {
    width: 33.33%;
    padding-right: 10px;
    box-sizing: border-box;
}

.col-sm-8 {
    width: 66.66%;
    box-sizing: border-box;
}

/* =========================
   LABEL
========================= */
label {
    font-weight: 600;
    color: #34495e;
    font-size: 14px;
}

/* =========================
   FORM CONTROL
========================= */
.form-control {
    width: 100%;
    height: 30px;
    border: 1px solid #dce1e7;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 14px;
    background: #f9fbfd;
    outline: none;
    transition: 0.3s;
    box-sizing: border-box;
}

/* Focus */
.form-control:focus {
    border-color: #0d6efd;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
}

/* =========================
   RESPONSIVE MOBILE
========================= */
@media (max-width: 768px) {

    .col-sm-4,
    .col-sm-8 {
        width: 100%;
    }

    .col-sm-4 {
        margin-bottom: 8px;
    }
}





/* =========================
   TABLE STYLE
========================= */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

/* =========================
   THEAD
========================= */
thead {
   background: linear-gradient(135deg, #7d8898, #63666b);
}

/* =========================
   HEADER CELL
========================= */
thead th {
    color: white;
    padding: 14px 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.15);
    white-space: nowrap;
}

/* =========================
   TBODY
========================= */
tbody td {
    padding: 12px;
    border: 2px solid #e5e7eb;
    font-size: 13px;
    color: #34495e;
    vertical-align: middle;
}

/* Ligne alternée */
tbody tr:nth-child(even) {
    background: #f8f9fc;
}

/* Hover ligne */
tbody tr:hover {
    background: #eef5ff;
    transition: 0.3s;
}

/* =========================
   RESPONSIVE TABLE
========================= */
.table-container {
    overflow-x: auto;
}