/* Styles de base pour les messages */
#lmo-rdv-result {
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    font-weight: 500;
    line-height: 1.6;
}

#lmo-rdv-result.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

#lmo-rdv-result.error {
    background-color: #fee2e2;
    color: #7f1d1d;
    border: 2px solid #ef4444;
}

/* Ajoute ces styles si le formulaire n'affiche pas correctement */
.lmo-rdv-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Style pour la page admin */
.wrap h1 {
    color: #1e293b;
    margin-bottom: 20px;
}

.wp-list-table th {
    background: #f1f5f9;
    font-weight: 600;
}

.wp-list-table td, .wp-list-table th {
    padding: 12px;
    vertical-align: middle;
}

.button.button-primary {
    background: #3b82f6;
    border-color: #3b82f6;
}

.button.button-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
}