/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text */
}

.navbar {
    margin-bottom: 20px;
    background-color: #005f4b; /* Dark green */
    color: white;
}

.navbar-brand, .nav-link {
    color: white;
}

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

.container {
    max-width: 900px;
    margin: auto;
}

.card {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: #1e1e1e; /* Dark background */
    color: #e0e0e0; /* Light text */
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #005f4b; /* Dark green */
    border-color: #005f4b;
}

.btn-primary:hover {
    background-color: #003e35;
    border-color: #003e35;
}

.chosen-container {
    width: 100% !important;
}

.list-group-item {
    border: 1px solid #333;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #1e1e1e; /* Dark background */
    color: #e0e0e0; /* Light text */
}

.form-group label {
    font-weight: bold;
}

.form-control, .btn {
    border-radius: 5px;
    background-color: #333; /* Dark input background */
    color: #e0e0e0; /* Light input text */
}

.alert {
    margin-bottom: 20px;
    background-color: #333; /* Dark alert background */
    color: #e0e0e0; /* Light alert text */
}

.footer {
    background-color: #005f4b; /* Dark green */
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.footer p {
    margin: 0;
    font-size: 14px;
}

/* Sidebar Styles */
.sidebar {
    background-color: #1e1e1e; /* Dark background */
    padding: 15px;
    border-right: 1px solid #333;
    color: #e0e0e0; /* Light text */
}

.sidebar h3 {
    font-size: 18px;
    color: #e0e0e0; /* Light text */
}

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

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    color: #005f4b; /* Dark green */
    text-decoration: none;
}

.sidebar ul li a:hover {
    text-decoration: underline;
}

/* Form Styles */
form {
    background-color: #1e1e1e; /* Dark background */
    padding: 20px;
    border: 1px solid #333;
    border-radius: 5px;
    color: #e0e0e0; /* Light text */
    margin-bottom: 20px;
}

form .form-group {
    margin-bottom: 20px;
}

form .form-group label {
    font-weight: bold;
}

form .form-control, form .btn {
    border-radius: 5px;
    background-color: #333; /* Dark input background */
    color: #e0e0e0; /* Light input text */
}
