body{
    font-family: Arial;
    /* background:#f5f6fa; */
    background-color: bisque;
}

.container{
    padding:20px;
}

.cards{
    display:flex;
    gap:10px;
}

.card{
    background:white;
    padding:15px;
    border-radius:10px;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
    margin-top:10px;
}

.green{border-left:5px solid green;}
.red{border-left:5px solid red;}

.menu a{
    margin-right:10px;
    text-decoration:none;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
}

.table th, .table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.table th {
    background: #111827;
    color: white;
}

.table tr:nth-child(even) {
    background: #f2f2f2;
}

.table tr:hover {
    background: #ddd;
}
/* pagination et responsive */
.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.table th, .table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.table th {
    background: #111827;
    color: white;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px;
    background: #111827;
    color: white;
    text-decoration: none;
    border-radius: 8px;
}

.btn:hover {
    background: #22c55e;
}

/* ===== MOBILE CARDS ===== */
.mobile {
    display: none;
}

.card-mobile {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ===== RESPONSIVE FIX ===== */
@media screen and (max-width: 768px) {

    .table {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }
}