   /* new css */

    .dh-step1-columns {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.dh-col {
    flex: 1;
    min-width: 360px;
}

/* Cards */
.dh-card {
    background: #fff;
    padding: 25px;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Titles */
.dh-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* List */
.dh-list {
    margin: 10px 0 20px;
}
.dh-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
.dh-list li:before {
    content: "✓";
    color: #37AFB1;
    position: absolute;
    left: 0;
}

/* Inputs */
.dh-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* Buttons */
.dh-btn {
    background: #37AFB1;
    color: #fff;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}
.dh-btn:hover { background: #2a8b8e; }

.dh-btn-outline {
    background: #fff;
    border: 2px solid #37AFB1;
    color: #37AFB1;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    display: block;
}
.dh-btn-outline:hover {
    background: #37AFB1;
    color: #fff;
}

/* Error message */
.dh-error {
    color: #e63946;
    font-size: 14px;
    display: none;
    margin-bottom: 10px;
}

.dh-link {
    display: block;
    margin-top: 10px;
    text-align: right;
    font-size: 14px;
    color: #37AFB1;
}

#gform_page_1_1 .gform-page-footer.gform_page_footer.top_label {
	display:block;
	width:100%;
	text-align:center;
	margin-left:60px;
}


/* ======== Calendar Container ======== */
#ga_appointments_calendar {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    max-width: 420px;
}
.ga_appointments_calendar_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ga_appointments_calendar_header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.ga_appointments_calendar_header a {
    color: #000;
    font-size: 22px;
    cursor: pointer;
}
#ga_appointments_calendar table.table_fixed {
    width: 100%;
    border-collapse: collapse;
}

#ga_appointments_calendar th.ga_header {
    font-size: 14px;
    text-transform: uppercase;
    padding: 8px 0;
    color: #777;
}
.ga_time_slots span {
    display: block;
    padding: 10px;
    border-radius: 6px;
    font-size: 15px;
}
.day_available span {
    background: #f7f7f7;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.2s;
}

.day_available:hover span {
    background: #e6f3ff;
    border-color: #2680eb;
}
.ga_selected_day span {
    background: #2680eb !important;
    color: #fff !important;
    border-color: #2680eb !important;
}
.day_unavailable span {
    color: #ccc;
    background: #fafafa;
    border: 1px solid #efefef;
}
.ga_today span {
    border: 2px solid #2680eb !important;
}
label.time_slot {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    margin: 6px;
    cursor: pointer;
    transition: 0.2s;
}

label.time_slot:hover {
    background: #e6f3ff;
    border-color: #2680eb;
}
label.time_slot_active {
    background: #2680eb !important;
    color: #fff !important;
    border-color: #2680eb !important;
}
#ga_slots_data {
    margin-top: 20px;
}



.slots-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}


body:not(.logged-in) #gform_page_1_1 .gform_page_footer.top_label input {
     opacity: 0;
    position: absolute;
     width: 0;
    height: 0 !important; 
    padding: 0 !important;
    border: 0;
    pointer-events: none;
}
