.booking-badge-tag {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 5px;
    background-color: #233963;
    color: #ffffff;
    width: fit-content;
    margin-left: 0;
    margin-right: 0;
}

#wrf-form .left-part {
    width: 50%;
    padding:2.5rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#wrf-form .right-part {width:50%;}

#wrf-form input,
#wrf-form select {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 2px;
}

#wrf-form input:focus,
#wrf-form select:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0,115,170,0.2);
}

#wrf-calculate-btn,
#wrf-submit-btn {
    margin-top: 10px;
    background: #233963;
    color: white;
    padding: 8px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    text-transform: uppercase;
}

#wrf-calculate-btn:hover,
#wrf-submit-btn:hover {
    background: #ff0000;
       color: #ffffff;
}

#wrf-calculate-btn:disabled,
#wrf-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.calculation-result {
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #ddd;
}

.calculation-result h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.success {
    color: #46b450;
    padding: 10px;
    background: #ecf7ed;
    border-radius: 4px;
    margin: 10px 0;
}

.error {
    color: #dc3232;
    padding: 10px;
    background: #fbeaea;
    border-radius: 4px;
    margin: 10px 0;
}

.error-message {
    color: #dc3232;
    font-size: 12px;
    margin-top: -5px;
}

/* Style for required field indicators */
#wrf-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color:#000;
}

#wrf-form label::after {
    content: " *";
    color: #dc3232;
}

/* Style for the preview and result sections */
#wrf-preview,
#wrf-result {
    width:100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #wrf-form {
        margin: 10px;
/*         padding: 15px; */
    }
}

.wrf-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 0px !important;
    position: relative;
    width:100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.suggestions {
    position: absolute;
    width: 100%;
    background: white;
    /* border: 1px solid #ddd; */
    border-radius: 4px;
    margin-top: 2px;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
}

.suggestions ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.suggestions li {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.suggestions li:last-child {
    border-bottom: none;
}

.suggestions li:hover {
    background-color: #f5f5f5;
}



.calculation-result h3 {
    margin-top: 0;
    color: #000;
}

.calculation-result p {
    margin: 8px 0;
   color:#000;
}

.success {
    color: #28a745;
    padding: 10px;
    background: #d4edda;
    border-radius: 4px;
    margin: 10px 0;
}

.error {
    color: #dc3545;
    padding: 10px;
    background: #f8d7da;
    border-radius: 4px;
    margin: 10px 0;
}

button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background: #0056b3;
}

button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#wrf-submit-btn {
    margin-top: 10px;
}

#wrf-form .two-fields {display: flex;justify-content: space-between;gap: 1rem;}
/* #wrf-form .form-group {} */

@media (max-width: 768px) {

#wrf-form .two-fields {display: block;}

    .wrf-form-container {
        padding: 10px;
    }
    
    .form-group input,
    .form-group select {
        font-size: 16px; /* Prevents zoom on mobile */
    }
}


.whole-div {display: flex;justify-content: space-between;gap:2rem; color: #494949;}
@media (max-width: 768px) {
  .whole-div {
    flex-direction: column;
  
  }
  #wrf-form .left-part {
    width: 100%;
    padding:1rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#wrf-form .right-part {width:100%;}
}
.elementor-element-764ebcb {width:100%;}
.calculation-result .total-cost {width: fit-content;
    background:#FFC000;
    padding: 0.3rem 0.4rem;
    border-radius: 5px;}