/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 20px;
    color: #333;
}
.logo_panier img {margin: 0 auto;max-width: 80px;display: flex;align-content: center;}
.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table thead {
    background-color: #f4f4f4;
}

table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    font-weight: bold;
}

table td {
    vertical-align: middle;
}

.delivery-options { 
    margin: 20px 0;
}

.delivery-options h2 {
    margin-bottom: 10px;
}

.delivery-options label {border-bottom: 1px solid #c5c5c6;
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
}

.delivery-options input {font-size: 13px;
    margin-right: 10px;
	
}

.total {
    margin-top: 20px;
    font-size: 18px;
}

button {
    display: inline-block;
    padding: 10px 20px;
    color: salmon;
    background-color:  #0e273b;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
}

button:hover {
    background-color:salmon;color:#ffffff;
}

@media (max-width: 500px) {
  button {font-size: 11px;padding: 10px;}
	.delivery-options input { 
   font-size: 12px;
}
	
    
  }
.delete-button {
    background-color: #ffffff;
}

.delete-button:hover {
    background-color: #ffffff;
}

.update-button {
    background-color: #007bff;
    margin-top: 10px;
}

.update-button:hover {
    background-color: #0056b3;
}

.checkout-button {
    background-color: #ffc107;
    margin-top: 10px;
}

.checkout-button:hover {
    background-color: #e0a800;
}

.continue-button {
    background-color: #17a2b8;
    margin-top: 20px;
    display: block;
    width: 100%;
}

.continue-button:hover {
    background-color: #138496;
}