/* Global Styles */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a; /* Mörk, mörkgrå bakgrund */
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Header */
#header {
    background-color: rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 20px;
}

.logo {
    width: 300px;
	max-width: 300px;
	min-width: 300px;
}

/* Left Column (Vertikal Meny) */
.left-column {
    width: 207px;
    background-color: rgba(255, 255, 255, 0.07);
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Vertikal Meny */
.menu-list {
    list-style-type: none;
    padding: 0;
	padding-top: 0px;
    margin: 0; /* Tar bort mellanrum mellan knapparna */
}

.menu-list li {
    margin: 0; /* Tar bort all spacing mellan knapparna */
	padding-top: 1px;
}

.menu-item {
    display: block;
    height: 29px;
    width: 207px; /* Fyller hela bredden i kolumnen */
    background-image: url('images/menu_one.png');
    background-size: cover;
    color: blue;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 29px;
    text-decoration: none; /* Tar bort understrykning */
}

.menu-item:hover {
    background-image: url('images/menu_two.png');
    text-decoration: none; /* Försäkrar att understrykning inte visas vid hover */
}

.menu-list img {
    width: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Right Column (Login) */
.right-column {
    width: 207px;
    background-color: rgba(255, 255, 255, 0.07);
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Main Column */
.main-column {
    width: 800px;
    background-color: rgba(111, 111, 111, 0.12);
    padding: 20px;
	padding-top: 10px;
    box-sizing: border-box;
}

/* Content Area */
#content {
    flex: 1; /* Fyller ut mellan header och footer */
    display: flex;
    justify-content: center;
    padding: 20px;
}

/* Log In Button Styled as Menu Button */
.login-button {
    background-image: url('images/menu_one.png');
    background-size: cover;
    width: 100%;
    height: 29px;
    border: none;
    color: blue;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.login-button:hover {
    background-image: url('images/menu_two.png');
}

/* Smaller Font for Register and Forgot Password Links */
.small-link {
    font-size: 12px;
    color: #ffffff; /* Justera färgen om du vill */
    text-decoration: none;
}

.small-link:hover {
    text-decoration: underline;
}

/* Footer */
#footer {
    background-color: rgba(255, 255, 255, 0.05);
    width: 100%;
    text-align: center;
}

#footer .footer-container {
    display: flex;
    justify-content:center;
    padding: 10px;
}

.footer-left {
	padding-right: 40px;
	padding-left: 40px;
}

.footer-center {
	padding-left: 40px;
	padding-right: 40px;

}

.footer-right {
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 20px;
}

.social-icon {
    width: 20px;
    margin: 0 5px;
}

.footer-logo {
    width: 250px;
}

.footer-links {
    list-style-type: none;
    padding: 0;
}

.footer-links li {
    margin: 5px 0;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Copyright Footer */
.footer-copyright {
    background-color: #000;
    text-align: center;
    padding: 10px;
}

        /* Dark theme for input fields */
        input[type="text"],
        input[type="email"],
        input[type="password"],
        input[type="date"],
	input[type="Username"]
        select {
            width: 80%;
            padding: 8px;
            background-color: #2b2b2b;
            border: 1px solid #444444;
            border-radius: 4px;
            color: #ffffff;
        }