#abp-booking-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.abp-booking-form {
    background: #fff;
    padding: 30px;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.abp-booking-form h2 {
    margin-top: 0;
    color: #333;
    text-align: center;
}

.abp-form-group {
    margin-bottom: 20px;
}

.abp-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.abp-form-group input,
.abp-form-group select,
.abp-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 16px;
    box-shadow: none;
}

.abp-form-group input:focus,
.abp-form-group select:focus,
.abp-form-group textarea:focus {
    box-shadow: none;
    border-color: #007cba;
}

.abp-form-row {
    display: flex;
    gap: 15px;
}

.abp-form-row .abp-form-group {
    flex: 1;
}

#abp-service-details {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 0;
    margin-top: 10px;
    border: 1px solid #eee;
    box-shadow: none;
}

.abp-submit-btn {
    width: 100%;
    padding: 12px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 0;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: none;
}

.abp-submit-btn:hover {
    background: #005a87;
    box-shadow: none;
}

#abp-booking-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 0;
    box-shadow: none;
    z-index: 10000;
    max-width: 600px;
    width: 90%;
    border: none;
}

#abp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.abp-popup-trigger {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    border-radius: 0;
    box-shadow: none;
}

.abp-popup-trigger:hover {
    background: #005a87;
    box-shadow: none;
}

/* Agreement Section Styles */
.abp-agreement-section {
    margin: 25px 0;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

.abp-agreement-content {
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
    background: white;
    border: 1px solid #eee;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.abp-agreement-content h3 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
}

.abp-agreement-content ol {
    padding-left: 20px;
    margin: 15px 0;
}

.abp-agreement-content li {
    margin-bottom: 10px;
}

.abp-agreement-content p {
    margin: 10px 0;
}

.abp-checkbox-label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    cursor: pointer;
}

.abp-checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
}

/* Error styling for required agreement */
#abp-agreement:invalid {
    border-color: #dc3545;
}

#abp-agreement:focus:invalid {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}