button.tiny, .button.tiny {
    padding: 2px 10px;
    margin: 0;
}

.menu_login_link {
    font-size: 11px !important;
}

/* Amélioration des formulaires Foundation */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="tel"],
textarea,
select {
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

/* Amélioration des boutons */
.button {
    transition: all 0.3s ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.button:active {
    transform: translateY(0);
}

/* Amélioration des messages */
.alert-box {
    border-radius: 5px;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Amélioration des tables */
table {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

table thead {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

table tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

/* Amélioration de la navigation */
.top-bar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Scrollbar personnalisée (pour navigateurs webkit) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
