/* Popup container */
#sessionPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    padding-top: 0;
    background-color: gray;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999999;
    text-align: center;
}

/* Title */
#sessionPopup h1 {
    color: white;
    font-size: 30px;
    margin-top: 10px;
}

/* Image */
#sessionPopup img {
    height: 60vh;
}

/* Buttons container */
#sessionPopup .action-buttons {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
}

/* Buttons (both share same layout) */
#sessionPopup .popup-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45%;
    padding: 10px 0;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    color: white; /* White text looks cleaner */
    font-weight: 600;
	border: 2px solid rgba(255, 255, 255, 0.8);
    transition: 
        background-color 0.25s ease,
        transform 0.25s ease,
        filter 0.25s ease;
}

/* Specific colors */
#sessionPopup .btn-verlenging {
    background-color: #10B981;
}

#sessionPopup .btn-inschrijving {
    background-color: #3B82F6;
}

#sessionPopup .popup-btn:hover {
    filter: brightness(1.15);
    transform: scale(1.04);
}

/* Close button */
#closePopup {
    position: absolute;
    top: -10px;
    right: -10px;
    height: 50px;
    width: 50px;
    padding: 0;
    background-color: #007BFF;
    color: #333;
    border: 2px solid #333;
    border-radius: 25px;
    font-size: 30px;
    cursor: pointer;
}
