.rounded-3xl {
    border-radius: 24px;
}

.rounded-lg {
    border-radius: 12px;
}

#customModal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#customModal.show {
    display: flex;
}

.modal-box {
    background: rgb(255, 255, 255);
    border: 3px solid var(--my-secondary);
    padding: 20px;
    max-width: 500px;
    width: 90%;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 20px;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
}

.modal-close:hover {
    color: #000;
}

.modal-btn {
    background-color: #d33;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.modal-btn:hover {
    background-color: #a00;
}