/* General Styles */
body.dark-theme {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

h1, h2 {
    color: #00d1b2;
}

a, button {
    cursor: pointer;
}

/* Login Page Styles */
.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
}

form label {
    display: block;
    margin-bottom: 8px;
}

form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: none;
    border-radius: 5px;
    background: #2e2e2e;
    color: #fff;
}

form input:focus {
    outline: 2px solid #00d1b2;
}

form .checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Voeg ruimte toe tussen de checkbox en het label */
    margin-top: 10px; /* Zorg voor wat ruimte boven de checkbox */
}

form .checkbox-container input[type="checkbox"] {
    width: 16px; /* Stel de grootte van de checkbox in */
    height: 16px;
}

form .checkbox-container label {
    font-size: 14px;
    color: #ffffff;
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #00d1b2;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
}

form button:hover {
    background-color: #00b09c;
}

form .error {
    color: #ff5c5c;
    font-size: 14px;
}


/* Dashboard Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #1e1e1e;
    border-bottom: 1px solid #333;
}

header button {
    background-color: #ff5c5c;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 16px;
}

header button:hover {
    background-color: #e04545;
}

.tabs {
    display: flex;
    justify-content: center;
    background-color: #1e1e1e;
    padding: 10px 0;
}

.tab-button {
    background: none;
    border: none;
    color: #ccc;
    padding: 10px 20px;
    font-size: 16px;
}

.tab-button.active {
    color: #ffffff;
    border-bottom: 2px solid #00d1b2;
}

main {
    padding: 20px;
}

.tab-panel {
    display: none;
}

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

ul {
    list-style: none;
    padding: 0;
}

li {
    background: #2e2e2e;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

li:hover {
    background: #3a3a3a;
}

li button {
    background-color: #ff5c5c;
    color: #ffffff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
}

li button:hover {
    background-color: #e04545;
}

/* Footer (Debug Mode) */
footer {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background-color: #1e1e1e;
    border-top: 1px solid #333;
}

#debug-box pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    text-align: left; /* Ensure left alignment */
    font-family: monospace; /* Use monospace font for better readability */
    line-height: 1.5; /* Improve line spacing */
    background-color: #1e1e1e; /* Match dark theme */
    color: #00d1b2; /* Slight contrast for visibility */
    padding: 10px; /* Add some padding for better appearance */
    border-radius: 5px;
}
