/* Main Form Container */
.comic-sponsorship-form-container {
    max-width: 800px;
    margin: 2rem auto;

}

/* Form Styling */
.comic-sponsorship-form {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f3f5;
}

.form-section h2 {
    color: #2b2d42;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #10ae98;
    font-weight: 600;
}

/* Form Rows & Groups */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
}

/* Input Fields */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group select {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    font-size: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #f15a5a;
    box-shadow: 0 0 0 3px rgba(104, 109, 224, 0.2);
    outline: none;
    background-color: white;
}

/* File Uploads */
.form-group input[type="file"] {
    padding: 1rem;
    border: 2px dashed #cbd5e0;
    background: #f8fafc;
}

.image-preview {
    margin-top: 1rem;
    min-height: 120px;
    border: 2px dashed #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-preview img {
    max-width: 100%;
    max-height: 200px;
}

.dimension-info {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Submit Button */
.submit-button {

    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(104, 109, 224, 0.3);
    display: block;
    margin: 2rem auto 0;
    width: fit-content;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(104, 109, 224, 0.4);
}

/* Calendar Styling */
#sponsorship-calendar {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-family: inherit;
}
.fc-daygrid-day.fc-day-booked {
    background-color: #6ab04c;
    color: white;
}

.fc-daygrid-day.fc-day-pending {
    background-color: #f0932b;
    color: white;
}
.fc-daygrid-day.fc-day-booked,
.fc-daygrid-day.fc-day-pending {
    cursor: not-allowed !important;
    pointer-events: none !important;
}
.fc-daygrid-day.fc-day-selected {
    background-color: #686de0 !important;
    color: white !important;
}

.fc-daygrid-day.fc-day-past {
    background-color: #f5f5f5;
    color: #999;
    pointer-events: none;
}

.fc .fc-button {
    background: #f15a5a;
    border: none;
    color: white;
}

.fc .fc-button:hover {
    background: #f15a5a;
}

/* Payment Status */
.payment-status {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #eee;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.payment-success {
    color: #6ab04c;
    text-align: center;
    font-size: 1.725rem;
    font-weight: bold;
}

.payment-cancel {
    color: #eb4d4b;
    text-align: center;
    font-size: 1.725rem;
    font-weight: bold;
}

.payment-cancel a {
    color: #686de0;
    text-decoration: none;
    font-weight: bold;
}

/* Error States */
.error {
    border-color: #fc8181 !important;
    background-color: #fff5f5 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .comic-sponsorship-form-container {
        padding: 1.5rem;
    }
    
    .comic-sponsorship-form {
        padding: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .submit-button {
        width: 100%;
    }
}