body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    color: #333;
    background-image: url('/img/sneakers-wallpaper.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
}

h1 {
    color: #f5f5f5;
    text-align: center;
    margin: 20px 0;
}

form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 20px auto;
}

label {
    display: block;
    margin-bottom: 10px;
    color: #666;
}

input[type="text"],
input[type="number"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

input[type="file"] {
    border: none;
    margin-bottom: 20px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #5c67f2;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #5058cc;
}

.confirmation, .error {
    color: white;
    background-color: #4CAF50;
    padding: 10px;
    margin: 20px auto;
    width: 90%;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.error {
    background-color: #f44336;
}

table, .sneakers-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    margin: 0 auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

.sneakers-table th, .sneakers-table td {
    border: 1px solid black;
}

.sneakers-table th, .sneakers-table td {
    padding: 8px;
    text-align: left;
}

.sneakers-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.sneakers-table tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

.sneaker-details {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: Arial, sans-serif;
}

.sneaker-details h1 {
    color: #333;
}

.sneaker-details p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.return-button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-bottom: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.return-button:hover {
    background-color: #45a049;
}

.image-container {
    text-align: center;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.image-container img {
    max-width: 200px;
    height: auto;
    margin-bottom: 10px;
}

.welcome-message, .user-list h2 {
    font-size: 24px;
    margin-bottom: 20px;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    color: #333; /* Assure que le texte est bien lisible */
}


.sneaker-card h3 {
    margin: 10px 0;
    font-size: 1.2em;
    background-color: #fff; /* Définit un fond blanc */
    color: #333; /* Assure que le texte est bien lisible */
}

.button {
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    background-color: #eee;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #ddd;
}
