
/* .modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
} */

.modal-content {
    background: white;
    width: 90%;
    max-width: 850px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
}

.modal-column {
    flex: 1 1 300px;
    padding: 30px;
    text-align: center;
}

.buyer {
    background: linear-gradient(135deg, #e0f7fa, #80deea);
}

.seller {
    background: linear-gradient(135deg, #ffe0b2, #ffcc80);
}

.modal-column i {
    font-size: 100px;
}

.modal-column h2 {
    margin-top: 20px;
    font-size: 22px;
}

.modal-column p {
    font-size: 14px;
    margin-top: 10px;
    color: #333;
}

.modal-column button {
    margin-top: 15px;
    padding: 10px 25px;
    border: none;
    background-color: #000;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
    }

    .modal-column {
        border-bottom: 1px solid #ccc;
    }

    .modal-column:last-child {
        border-bottom: none;
    }
}
