/* Autors: Raivis Rampāns */
/* Izveidots: 27.05.2026 */
/* Mainīts : 27.05.2026 */

.custom-modal {
    position: fixed;
    inset: 0;
    z-index: 50;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0 16px;

    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.custom-modal-box {
    position: relative;

    width: 100%;
    max-width: 540px;

    border: 1px solid rgba(192, 132, 252, 0.3);
    border-radius: 18px;

    background: rgba(2, 6, 23, 0.95);

    padding: 28px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.custom-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;

    color: rgb(243, 232, 255);

    font-size: 40px;
    line-height: 1;
    font-weight: 900;

    transition: color 0.18s ease;
}

.custom-modal-close:hover {
    color: white;
}

.custom-modal-title {
    margin-bottom: 24px;

    text-align: center;

    color: rgb(243, 232, 255);

    font-size: 40px;
    font-weight: 900;
}

.custom-modal-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}