body {
    font-family: Arial, sans-serif;
}
.admin-container {
    padding: 30px;
}
h1 {
    margin-bottom: 25px;
}
.commandes-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}
.commandes-table th {
    background: #222;
    color: white;
    padding: 15px;
    text-align: left;
}
.commandes-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}
.commandes-table tr:hover {
    background: #f5f5f5;
}
.statut {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}
.en-attente {
    background: #ffeeba;
    color: #856404;
}
.en-preparation {
    background: #b8daff;
    color: #004085;
}
.expediee {
    background: #c3e6cb;
    color: #155724;
}
.btn-detail {

    background: #007bff;
    color:white;
    padding:8px 15px;
    border-radius:6px;
    text-decoration:none;
}
.btn-detail:hover {
    background:#0056b3;
}

