/* Google Sheets Integration Styles */
.google-sheets-section {
    margin-top: 0.5rem !important;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sheet-processing-status {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #e9f7fe;
    border-radius: 4px;
    align-items: center;
}

.results-summary {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f1f8e9;
    border-radius: 4px;
}

.error-details {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #ffebee;
    border-radius: 4px;
}

.file-list {
    margin-top: 1rem;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
}

.file-details {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.button-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.sheet-status {
    background: #f8f8f8;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    text-align: left;
}
.sheet-buttons {
    display: flex;
    gap: 1rem;
}