/* This CSS file will be loaded at last. Any CSS customization should be placed here */

/* Container styling for the calendars */
.vbo-availcalendars-cont {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between the calendars */
    justify-content: center;
    padding: 20px;
    background-color: #f8f9fa; /* Light grey background */
    border-radius: 10px;
}

/* Container for both calendars */
.calendars-container {
    display: flex;
    justify-content: space-between; /* Ensures space between calendars */
}

/* Individual calendar styling */
.availability-calendar {
    width: 45%; /* Adjust the width as needed */
}

/* Further adjust the size and appearance */
.availability-calendar table {
    width: 100%; /* Ensure the table inside the calendar fits the container */
    font-size: 0.9em; /* Adjust font size as needed */
}

/* Optional: Add padding or margin if needed */
.availability-calendar {
    padding: 10px;
    margin: 0 5px; /* Small margin between the calendars */
}

/* Individual calendar styling */
.vbcalsblock {
    flex: 1;
    min-width: 300px; /* Ensure the calendar is wide enough */
    max-width: 600px;
    background-color: #ffffff; /* White background for calendars */
    border: 1px solid #dee2e6; /* Light border around each calendar */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 15px;
}

/* Calendar month heading */
.vbcaltrmonth {
    text-align: center;
    font-size: 1.2em;
    color: #343a40; /* Darker text color */
    margin-bottom: 10px;
}

/* Days of the week styling */
.vbcaldays td {
    text-align: center;
    font-weight: bold;
    color: #495057;
}

/* Calendar date cells styling */
.vbcalnumdays td {
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.vbtdfree {
    background-color: #e9ecef;
    color: #28a745;
    cursor: pointer;
}

.vbtdbusy {
    background-color: #e9ecef;
    color: #dc3545;
}

.vbtdbusyforcheckin, .vbtdbusyforcheckout {
    background-color: #ffc107;
    color: #ffffff;
}

/* Hover effect for selectable dates */
.vbtdfree:hover {
    background-color: #28a745;
    color: #ffffff;
}

/* Legend styling */
.vblegendediv {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

.vblegenda {
    display: flex;
    align-items: center;
    font-size: 0.9em;
    color: #495057;
}

.vblegenda-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.vblegfree {
    background-color: #28a745;
}

.vblegbusycheckout {
    background-color: #ffc107;
}

.vblegbusycheckin {
    background-color: #ffc107;
}

.vblegbusy {
    background-color: #dc3545;
}

/* Styling the select dropdown */
.vbselectm {
    margin-top: 10px;
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #ced4da;
    background-color: #ffffff;
    color: #495057;
    transition: border-color 0.3s ease;
}

.vbselectm:hover {
    border-color: #28a745;
}

/* Button styling */
.vbo-rdet-avcal-nav {
    font-size: 1.5em;
    color: #495057;
    cursor: pointer;
}

.vbo-rdet-avcal-nav:hover {
    color: #28a745;
}





/* General styling for the form container */
/* Main Container Styling */
.vbo-search-inner {
    display: flex;
    align-items: center;
    gap: 10px; /* Adjust gap between elements if needed */
}

.vbo-search-inpblock,
.vbo-search-num-racblock {
    margin: 0;
    padding: 0;
}

.vbo-search-inpblock label,
.vbo-search-num-adults-entry-label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin-bottom: 5px;
}

.vbo-search-inpblock-checkin,
.vbo-search-inpblock-checkout,
.vbo-search-num-adults-entry {
    flex: 1;
}

.vbo-search-num-adults-entry {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vbo-search-num-adults-entry-inp {
    width: 100%;
    display: flex;
    align-items: center;
}

.vbo-search-submit {
    margin-left: 10px; /* Add some space before the search button */
}

.input-group {
    display: flex;
    align-items: center;
}

.input-group input {
    padding: 5px;
    margin: 0;
}

.btn.vbo-pref-color-btn {
    padding: 8px 20px;
    margin: 0;
}

.vbo-search-num-adults-entry-inp select {
    width: 100%;
    padding: 5px;
    margin: 0;
}

.vbdivsearch .vb-search-inner .vbo-search-inpblock .input-group > input {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin: 0;
    height: 42px;
    padding: 0 102px;
    font-size: 14px;
    line-height: 1.42857143;
    color: var(--vbo-text-color);
    background-color: var(--vbo-input-style);
    background-image: none;
    border: 1px solid var(--vbo-border-color);
    border-radius: 2px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-sizing: border-box;
}