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

.popup-content {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    width: 30%;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.popup-title {
    color: #5e50a2;
    font-weight: 700;
    margin-bottom: 20px;
}

.popup-details {
    margin-bottom: 20px;
}

.popup-details p {
    margin: 10px 0;
}

.close-popup {
    background-color: #5e50a2;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.close-popup:hover {
    background-color: #836ee7;
}
