/* FOOTER BALK */
.footerbalk {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1500px;
    background-color: orange;
    height: 15px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #0b1e3f;
    padding: 20px 10px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.footer-content {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0b1e3f;
}

.footer-content p {
    margin: 5px 0;
    font-size: 14px;
}

/* Rechter knop met alleen icoon, geen styling */
.footer-icon-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #eee;
    font-size: 20px;
    padding: 0;
    cursor: pointer;
}

.footer-icon-btn:hover {
    color: #eee; /* geen hover-effect */
}

/* POPUP OVERLAY */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* POPUP CONTENT BOX */
.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    text-align: center;
    animation: popupFade 0.3s ease;
}

@keyframes popupFade {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.popup-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

/* INPUTS */
.popup-content input[type="text"],
.popup-content input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/* INLOG BUTTON */
.popup-content button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    border: none;
    color: white;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
}

/* SLUIT KNOP */
.popup-content .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
}

/* FOUTMELDING */
#loginError {
    color: red;
    margin-top: 10px;
    font-size: 14px;
}
