.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.45);
}

.cssFooter {
    text-align: justify;
}

.custom-modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 24px;
    border-radius: 12px;
    width: 90%;
    max-width: 75%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.18);
    position: relative;
}

.custom-modal-close {
    color: #888;
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color .2s;
}

.custom-modal-close:hover {
    color: #333;
}

.custom-modal-btn {
    padding: 8px 18px;
    border: none;
    background: #36444e;
    color: #fff;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin-left: 13px;
    transition: background 0.18s;
}

.custom-modal-btn:hover {
    background: #3e505c;
}