
.abp-form select,
.abp-form textarea,
.abp-form input{
	width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    display: block;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid #666;
    border-radius: 6px;
    padding: .5rem 1rem;
}
#abp-booking-wrapper{
	font-family: "DM Sans", Sans-serif;
}
.abp-form H3{
	font-family: "DM Sans", Sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1.2px;
}
.abp-form #abp-submit{
	    background-color: #009345;
    font-family: "Jost", Sans-serif;
    font-size: 16px;
    font-weight: 400;
	color:#fff !important;
padding: 12px;
    width: 100%;
	border-radius:12px;
	border:1px solid #fff;
}
/* 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: #009345;
    color: #fff;
}

/* Form */
.abp-form {
    width: 100%;
}

.abp-form input,
.abp-form textarea,
.abp-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
}

#abp-submit:hover {
    background: #04783a;
}
.abp-checkbox-wrapper{
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}
.abp-checkbox-wrapper input{
    width: 20px;
}
.abp-calendar-header button{
    color: #04783a;
}
.abp-field-row{
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
}




/* ================= CALENDAR FIX ================= */

.abp-calendar {
    background: #0f5b3a;
    color: #fff;
    border-radius: 12px;
    padding: 16px;
    max-width: 420px;
}

/* Header */
.abp-calendar-header {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    margin-bottom: 12px;
}

#abp-prev-month,
#abp-next-month {
    background: #ffffff;
    color: #0f5b3a;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}

#abp-month-label {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

/* Weekdays */
.abp-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Grid */
.abp-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

/* Day cells */
.abp-day {
    background: #ffffff;
    color: #0f5b3a;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.abp-day:hover {
    background: #e6f2ec;
}

.abp-day.active {
    background: #1aa36f;
    color: #ffffff;
}

/* Empty cells */
.abp-empty {
    height: 44px;
}

@media (max-width: 768px) {
    #abp-booking-wrapper {
        flex-wrap: wrap;
    }
    .abp-form,
    .abp-calendar{
        width:100% ;
        margin: 10px 0px;
    }
    .abp-field-row{
    display: block;
    
}
    
}