#abp-booking-wrapper {
    display: flex;
    gap: 40px;
}

/* Calendar */
.abp-calendar {
    width: 45%;
    background: #0b5f3b;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
}

.abp-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.abp-calendar-header button {
    background: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.abp-calendar-weekdays,
.abp-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-top: 10px;
}

.abp-calendar-weekdays span {
    text-align: center;
    font-weight: bold;
}

.abp-day,
.abp-empty {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abp-day {
    cursor: pointer;
    background: #fff;
    color: #000;
    margin: 2px;
    border-radius: 4px;
}

.abp-day.active {
    background: #e53935;
    color: #fff;
}

/* Form */
.abp-form {
    width: 45%;
}

.abp-form input,
.abp-form textarea,
.abp-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
}

#abp-submit {
    background: #e53935;
    color: #fff;
    padding: 12px;
    border: none;
    cursor: pointer;
}
#abp-submit:hover {
    background: #d32f2f;
}