/* Parsley validation styles */
.parsley-errors-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.parsley-errors-list li {
    color: #dc3545;
    font-size: 12px;
    margin-bottom: 2px;
}

.parsley-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.parsley-success {
    border-color: #28a745 !important;
}

/* Loading spinner for form submissions */
.spinner-border-sm {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 0.125rem;
}

/* Form validation feedback */
.form-messages {
    margin-bottom: 1rem;
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert i {
    margin-right: 8px;
}