/* Custom Alert Styles for Kibaroglu Theme */

/* Success Message */
.success_message {
    text-align: left;
    font-size: 12px;
    max-width: 750px;
    position: relative;
    padding: 20px 30px;
    color: #2d5016;
    background: #f0f8e8;
    border-left: 4px solid #5cb85c;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    float: left;
    width: 100%;
}

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

.success_message ul li {
    margin-bottom: 5px;
}

.success_message ul li:last-child {
    margin-bottom: 0;
}

/* Error Message - Enhanced */
.error_message {
    text-align: left;
    font-size: 12px;
    max-width: 750px;
    position: relative;
    padding: 20px 30px;
    color: #933;
    background: #fef5f5;
    border-left: 4px solid #d9534f;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    float: left;
    width: 100%;
}

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

.error_message ul li {
    margin-bottom: 5px;
}

.error_message ul li:last-child {
    margin-bottom: 0;
}

/* Info Message */
.info_message {
    text-align: left;
    font-size: 12px;
    max-width: 750px;
    position: relative;
    padding: 20px 30px;
    color: #31708f;
    background: #f0f8ff;
    border-left: 4px solid #5bc0de;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    float: left;
    width: 100%;
}

/* Warning Message */
.warning_message {
    text-align: left;
    font-size: 12px;
    max-width: 750px;
    position: relative;
    padding: 20px 30px;
    color: #8a6d3b;
    background: #fcf8e3;
    border-left: 4px solid #f0ad4e;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    float: left;
    width: 100%;
}

/* Map iframe styling */
#map-canvas iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Terms and Conditions Checkbox */
.terms-checkbox-wrap {
    float: left;
    width: 100%;
    margin: 20px 0;
    position: relative;
}

.terms-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #666;
}

.terms-checkbox-label input[type="checkbox"] {
    width: 15px;
    height: 15px;
    min-width: 15px;
    margin: 0;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #292929;
    flex-shrink: 0;
}

.terms-checkbox-label .checkbox-text {
    line-height: 1.6;
    text-transform: none;
}

.terms-checkbox-label .terms-link {
    color: #292929;
    text-decoration: underline;
    font-weight: 800;
    transition: all 0.2s linear;
}

.terms-checkbox-label .terms-link:hover {
    color: #666;
}

/* Error state for checkbox */
.terms-checkbox-wrap input[type="checkbox"]:invalid {
    outline: 2px solid #d9534f;
    outline-offset: 2px;
}

