/* ziiz-popup.css - Styles for property card buttons and contact popup */

.ziiz-card-actions {
    display: flex;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto; /* Pushes buttons to the bottom of the flex container */
}

.ziiz-card-btn {
    flex: 1;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: 1px solid #0073e6;
    background-color: #fff;
    color: #0073e6;
    text-decoration: none;
}

.ziiz-card-btn:hover {
    background-color: #0073e6;
    color: #fff;
}

.ziiz-btn-contact {
    background-color: #0073e6;
    color: #fff;
}

.ziiz-btn-contact:hover {
    background-color: #005bb5;
}

/* Popup Modal Styles */
.ziiz-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.ziiz-popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.ziiz-popup-content {
    background-color: #fff;
    padding: 20px 30px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 500px;
    position: relative;
}

.ziiz-popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
}
.ziiz-popup-close:hover {
    color: #333;
}
