/* Custom styles for the project creation form */

.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 8px;
}

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

.progress-bar {
    transition: width 0.3s ease-in-out;
}

/* Autocomplete dropdown styling */
.autocomplete-option {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.15s ease;
}

.autocomplete-option:hover,
.autocomplete-option.highlighted {
    background-color: #f3f4f6;
}

.autocomplete-option:last-child {
    border-bottom: none;
}

.autocomplete-option .name {
    font-weight: 500;
    color: #111827;
}

.autocomplete-option .email {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 2px;
} 