
/* Login Button Styles */
.login-section {
    text-align: center;
    margin-bottom: 20px;
}

.login-btn, .logout-btn {
    background-color: #1b5cd5;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 5px;
}

.login-btn:hover, .logout-btn:hover {
    background-color: #0f4cb8;
}

.gebruiker-naam {
    color: #1b5cd5;
    font-weight: bold;
    margin: 0 10px;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}

.close:hover {
    color: black;
}

/* Tab Styles */
.login-tabs {
    display: flex;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background-color: #f0f0f0;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
}

.tab-btn.active {
    background-color: #1b5cd5;
    color: white;
}

/* Form Styles */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.tab-content button {
    width: 100%;
    padding: 12px;
    background-color: #1b5cd5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.tab-content button:hover {
    background-color: #0f4cb8;
}

.tab-content h3 {
    margin-top: 0;
    color: #333;
}
