/* Base Modal Styles (same as before) */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.custom-modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 24px 32px;
    border-radius: 10px;
    width: 90%;
    max-width: 520px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    font-family: sans-serif;
}

.modal-heading {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

/* Close Button (top right X) */
.top-right-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 26px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}

/* Form Grouping */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

/* Two-column row for status + pendency */
.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

/* Submit Button */
.submit-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}

.submit-button:hover {
    background-color: #0056b3;
}

/* FLOATING CALL BUTTON FOR TABLET/ MOBILE */
@media (max-width: 980px) {
    .widget-box.map-area {
        position: fixed;
        bottom: 0;
        right: 30px;
        z-index: 10000;
        max-width: 200px;
        /*height: 70px;*/
        /*background: #2c83eb;*/
        border: 2px solid white;
        border-radius: 8px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: transform 0.2s;
    }

    /* Add hover effect */
    .widget-box.map-area:hover {
        transform: scale(1.05);
    }

    /* MAKE THE CALL ICON AND TEXT APPEAR ON SAME LINE */
    .listing-second-view .map-area .listing-detail-infos ul li a {
        display: flex;
        align-items: center;
        column-gap: 1rem;
        padding: 0;
    }

    /*  */
    .listing-second-view .map-area .listing-detail-infos {
        padding-left: 15px;
        padding-right: 15px;
    }
}
