.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-secondary);
    padding: 25px 50px;
    max-width: 85%;
    min-width: 30%;
    min-height: 250px;
    border-radius: 10px;
    gap: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
    color: white;
    font-size: 25px;
    font-weight: 500;
}

.popup-content button {
    font-size: 28px;
    height: 100px;
    min-width: 300px;
    border-radius: 10px;
    padding: 0 30px;
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
    gap: 10px;
}

.popup-content button:hover {
    background-color: var(--color-accent);
}

#popup-icon {
    font-size: 45px;
}

#close-popup-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    font-size: 25px;
}

#close-popup-btn:hover {
    color: var(--color-accent);
}