/* === RESET & BASE === */
html, body {
    height: 100%;
    margin: 0;
    background: #f9f9f9;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

main {
    flex: 1;
    padding: 40px;
}

/* Désactiver flèches input number */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}

/* === SELECT2 === */
.select2-container .select2-selection--single {
    height: 38px !important;
    border-radius: 0.375rem; /* Tailwind rounded-md */
    border: 1px solid #ccc;
    padding: 0 0.75rem;
}

.select2-selection__rendered {
    line-height: 36px !important;
}

.select2-container .select2-selection__arrow {
    height: 36px !important;
}

/* === LOGIN ILLUSTRATION === */
.login-image img {
    max-width: 40%;
    height: auto;
    border-radius: 8px;
}

/* === PAGINATION (si besoin encore) === */
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-link {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    background-color: #562f88;
    color: #fff;
    border-radius: 0.375rem;
    transition: background 0.3s ease;
}

.page-link:hover {
    background-color: #8bbe47;
}

.page-link.active {
    background-color: #8bbe47;
    font-weight: bold;
    cursor: default;
}
