.popup-icon {
    cursor: pointer;
    display: inline-block;
}

.popup-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 600px;
    border: 3px solid;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
}

.popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.popup-inner-content {
    width: 100%;
    text-align: left;
}

.popup-close {
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 60px;
    text-align: center;
    border-radius: 5px;
}
