body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
}

h2, h3 {
    text-align: center;
    color: #0a84ff;
    margin: 15px 0;
}

p {
    line-height: 1.5;
    font-size: 16px;
    margin: 10px 0;
}

a {
    color: #0a84ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button, a.button {
    display: inline-block;
    background: #0a84ff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 16px;
    font-size: 16px;
    cursor: pointer;
    margin: 5px;
    text-align: center;
}

button:hover, a.button:hover {
    background: #0060df;
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
input[type="file"] {
    width: 90%;
    max-width: 400px;
    padding: 10px;
    margin: 8px auto;
    display: block;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#map {
    width: 100%;
    height: 80vh;
    border-radius: 8px;
    margin-top: 10px;
}

#filterButtons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
}

#filterButtons button {
    flex: 1 1 auto;
    min-width: 80px;
}

.boutique-box, .stat, .status {
    max-width: 400px;
    margin: 10px auto;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
}

.stat p, .status p {
    margin: 5px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 10px 0;
}

th, td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

th {
    background: #f0f0f0;
}

.validation-div {
    background: #f0f0f0;
    padding: 10px;
    margin: 10px;
    border-radius: 6px;
    text-align: center;
}

#signalementModal div {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

#heureFinPrevue {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

.btn-green {
    background: #28a745;
}

.btn-red {
    background: #dc3545;
}

.btn-blue {
    background: #007bff;
}

.btn-logout {
    background: #555;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
}

.table-container {
    overflow-x: auto;
}

@media (max-width: 480px) {
    h2, h3 {
        font-size: 20px;
    }
    button, a.button {
        font-size: 14px;
        padding: 8px 12px;
    }
    input[type="text"],
    input[type="email"],
    input[type="password"],
    select {
        font-size: 14px;
    }
}
