﻿.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 550;
}

.custom-modal {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 16px;
    width: 55%;
    padding: 32px;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border: none;
}

    .modal-header h2 {
        font-size: 28px;
        font-weight: bold;
        margin: 0;
    }

.close-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    border: none;
    padding: 0 !important;
}

.modal-primary-btn {
    background-color: rgb(37, 59, 76) !important;
    color: white !important;
    border: none !important;
    border-radius: 5px;
    width: 220px;
    height: 60px;
    font-size: 18px;
}

.modal-secundary-btn {
    background-color: rgba(37, 59, 76, 0.15) !important;
    color: rgb(37, 59, 76) !important;
    border: none !important;
    border-radius: 5px;
    width: 220px;
    height: 60px;
    font-size: 18px;
}