/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and global styles */
body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Topbar Styles */
.header {
    background-color: #333;
    padding: 20px;
    display: flex;
    justify-content: space-between; /* Align items to the left and right */
    align-items: center; /* Vertically center items */
}

.header h1 {
    font-size: 28px;
}

.tabs {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.tabs li {
    display: inline;
    margin-left: 20px; /* Add spacing between menu items */
}

.tabs li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
}

/* Highlight the current page */
.tabs li.current a {
    color: #ff0000; /* Red for the current page */
}

.tabs li a:hover {
     color: red;
}

.login-container {
    max-width: 400px;
    padding: 20px;
    background-color: #333;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    
    /* Center horizontally */
    margin: 0 auto;
    
    /* Center vertically */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login-container h2 {
    color: #fff;
    margin-bottom: 20px;
}


.login-container label {
    display: block;
    margin: 1px 0;
    font-size: 15px;
    text-align: left;
    font-weight: bold;
    color: #fff;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px -10px;
    background-color: #444;
    border: none;
    border-radius: 3px;
    color: #fff;
}

.login-container input[type="submit"] {
    background-color: red;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
}

.login-container input[type="submit"]:hover {
    background-color: red;
}

.error {
    color: red;
}

/* Styling for specific elements */
h2 {
    font-size: 24px;
    margin-bottom: 10px;
}