body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

header nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

header nav a:hover {
    text-decoration: underline;
}

.container {
    margin: 20px auto;
    max-width: 800px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tabs {
    display: flex;
    margin-bottom: 10px;
    border-bottom: 2px solid #ddd;
}

.tablinks {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    background: #f9f9f9;
    border: none;
    outline: none;
}

.tablinks.active {
    background: #ddd;
    border-bottom: 2px solid #333;
}

.tabcontent {
    display: none;
}

.tabcontent.active {
    display: block;
}

body {
    background-color: #f9f9f9;
    font-family: 'Arial', sans-serif;
}

.container h1 {
    font-size: 2.5rem;
    color: #333;
}

.nav-pills .nav-link {
    background-color: #e9ecef;
    color: #333;
    border-radius: 0;
    border: 1px solid #ddd;
    margin-right: -1px;
    padding: 10px;
    text-align: center;
}

.nav-pills .nav-link.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.tab-content {
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
}

.list-group-item {
    border: none;
    padding: 10px 15px;
}
 

/* General Colors */
body {
    background-color: #262a3d; /* Dark Blue-Grey */
    color: #ffffff; /* White Text */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    background-color: #1f2433; /* Slightly darker navbar */
    border-bottom: 3px solid #19e6a5; /* Green underline */
}
.navbar-brand, .nav-link {
    color: #19e6a5 !important;
}
.nav-link:hover {
    color: #ffffff !important;
}

/* Buttons */
.btn-primary {
    background-color: #19e6a5; /* Bright Green */
    border-color: #19e6a5;
    color: #262a3d; /* Dark text on button */
}
.btn-primary:hover {
    background-color: #16c093; /* Slightly darker green */
}

/* Tabs */
.nav-tabs .nav-link.active {
    background-color: #19e6a5; /* Active tab background */
    color: #262a3d !important;
}
.nav-tabs .nav-link {
    color: #ffffff;
}
.nav-tabs .nav-link:hover {
    color: #19e6a5;
}

/* Cards */
.card {
    background-color: #262a3d; /* Match site background */
    border: 1px solid #19e6a5;
    color: #ffffff; /* White text inside cards */
}
.card-title {
    color: #19e6a5; /* Green titles */
}

/* Footer */
footer {
    background-color: #1f2433; /* Darker footer */
    color: #19e6a5; /* Green text */
    padding: 20px 0;
    margin-top: auto; /* Push footer to the bottom */
    text-align: center;
}

/* Utility Classes */
.mt-content {
    margin-top: 20px;
}

.container {background-color: #262a3d;}