/* Flowbite CSS */
:root {
    --flowbite-blue: #3b82f6;
    --flowbite-blue-hover: #2563eb;
}

/* Styles de base */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--flowbite-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--flowbite-blue-hover);
}

/* Styles pour les formulaires */
.form-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

.form-input:focus {
    border-color: var(--flowbite-blue);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
    outline: none;
}

/* Styles pour les alertes */
.alert {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

.alert-error {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
} 