.form-field label {
    font-weight: 600;
    color: #2d3748;
}
.form-field select, .form-field input[type="text"], .form-field textarea {
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    padding: 0.5rem;
    width: 100%;
    transition: border-color 0.2s ease-in-out;
}
.form-field select:focus, .form-field input:focus, .form-field textarea:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-field p.description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
.form-field a {
    color: #3b82f6;
    text-decoration: underline;
}
.form-field a:hover {
    color: #1d4ed8;
}
.btn-primary {
    background-color: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease-in-out;
}
.btn-primary:hover {
    background-color: #1d4ed8;
}
.btn-secondary {
    background-color: #6b7280;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease-in-out;
}
.btn-secondary:hover {
    background-color: #4b5563;
}
.status-card {
    background-color: #f9fafb;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.upgrade-banner {
    background: linear-gradient(90deg, #fefcbf, #fef3c7);
    border: 2px solid #d97706;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.upgrade-banner-text {
    flex: 1;
    margin-right: 1rem;
}
.upgrade-banner-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #b45309;
    margin-bottom: 0.5rem;
}
.upgrade-banner-text p {
    color: #78350f;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
.upgrade-banner-text ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    color: #78350f;
}
.upgrade-banner-button {
    background-color: #d97706;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out;
}
.upgrade-banner-button:hover {
    background-color: #b45309;
}