.bcf-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.bcf-row {
    display: flex;
    gap: 30px;
}

.bcf-form-section {
    flex: 1;
    background-color: #f4f4f4; /* Light grey background like image */
    padding: 25px;
    border-radius: 2px;
}

.bcf-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 1px;
}
.sec-1 {
    background-color: #C3B1E1;
    padding: 40px 20px 20px 20px;
    border-radius: 25px 25px 25px 25px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5) inset;
}

/* --- Calendar Styling --- */
.bcf-calendar {
    margin-bottom: 25px;
    background: #d8caca; /* Dusty rose/brownish background from image */
    padding: 20px;
    border-radius: 2px;
    color: #333;
}

.bcf-calendar-header {
    display: flex;
    justify-content: space-between; /* Spreads arrows apart */
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.bcf-nav-btn {
    cursor: pointer;
    user-select: none;
    font-size: 20px;
    padding: 0 10px;
    color: #555;
    transition: color 0.2s;
}

.bcf-nav-btn:hover {
    color: #000;
}

.bcf-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.bcf-calendar-day {
    padding: 8px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s;
}

.bcf-calendar-day:hover {
    background-color: rgba(255,255,255,0.5);
}

.bcf-calendar-day.selected {
    background-color: #333; /* Dark selection color */
    color: white;
}

/* --- Form Styling --- */


/* In the image, the inputs are on a white background, 
   but the form wrapper is light grey. 
   Let's adjust to match the 'card' look strictly */

.bcf-form-section {
    /* Resetting background to match the overall page or container */
    background: transparent; 
}

/* Wrapper for the inputs part to give it the white card look */
.bcf-form {
    background: #f9f9f9; 
    padding: 20px;
}

/* --- Form Styling --- */
.bcf-form {
    /* Use Grid instead of Flexbox */
    display: grid; 
    grid-template-columns: 1fr 1fr; /* Create two equal columns */
    gap: 15px; /* Space between columns and rows */
    
    background: #f9f9f9; 
    padding: 20px;
}

.bcf-input-group {
    display: flex;
    flex-direction: column;
    
    /* Default: Make all inputs span across both columns (Full Width) */
    grid-column: span 2; 
}

/* TARGET SPECIFIC INPUTS: */
/* The 1st div (First Name) and 2nd div (Last Name) should only take 1 column */
div.bcf-input-group:nth-of-type(1), 
div.bcf-input-group:nth-of-type(2) {
    grid-column: span 1;
}

.bcf-input-group label {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 12px;
    color: #333;
}

.bcf-input-group input,
.bcf-input-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 0; 
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

.bcf-input-group textarea {
    resize: vertical;
    height: 80px;
}

.bcf-submit-btn {
    /* Make the button span the full width */
    grid-column: span 2;
    
    background-color: #e91e63;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 10px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .bcf-row {
        flex-direction: column;
    }
    
    /* On mobile, force First/Last name back to full width */
    div.bcf-input-group:nth-of-type(1), 
    div.bcf-input-group:nth-of-type(2) {
        grid-column: span 2;
    }
}

.bcf-submit-btn:hover {
    background-color: #d81b60;
}

.bcf-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .bcf-row {
        flex-direction: column;
    }
}


/* Add these new styles for disabled states */


.bcf-calendar-day.disabled {
    color: #ccc !important;   /* Gray text */
    background-color: transparent !important;
    cursor: default !important;
    pointer-events: none;     /* Completely blocks clicks */
}

.bcf-nav-btn.disabled {
    color: #eee !important;
    cursor: default !important;
    pointer-events: none;
}