.popupBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.popupMain {
    background-color: var(--background-dark);
    border-radius: var(--standard-border-radius);
    padding: var(--standard-padding);
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popupTitle {
    font-size: var(--title-font-size);
    margin-bottom: var(--standard-margin);
}

.popupContent {
    margin-bottom: var(--standard-margin);
}

.popupButtons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
}