/* Dark theme for the body */
body {
    background-color: #1a1a1a; /* Dark background */
    color: #f0f0f0;           /* Light text */
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Headings in light color */
h1, h2, h3, h4, h5, h6 {
    color: #fff; /* Bright text for headings */
}

body, h1, h2, h3, h4, h5, h6, p, a, button, nav {
    font-family: 'Titillium Web', sans-serif;
}

/* Navigation bar styles for dark theme */
.navbar-dark {
    background-color: #333333 !important; /* Darker background for navbar */
    border-bottom: 1px solid #444; /* Slight border to separate content */
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff !important; /* Light color for navbar brand */
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    color: #ccc !important; /* Slightly lighter than body text for nav links */
}

.navbar-nav .nav-link:hover {
    color: #fff !important; /* Bright white on hover */
}

/* Footer styles */
footer {
    background-color: #333333; /* Dark footer */
    color: #aaa; /* Muted light text */
    border-top: 1px solid #444; /* Border for separation */
    padding: 1rem 0;
}

footer .text-muted {
    color: #888 !important; /* Muted grey for footer text */
}

/* Links with color contrast */
a {
    color: #00b4d8; /* Bright blue for links */
}

a:hover {
    color: #0077b6; /* Slightly darker blue on hover */
    text-decoration: underline;
}

/* Buttons for dark mode */
.btn-custom {
    background-color: #0077b6; /* Dark blue button background */
    color: #fff; /* White text on buttons */
    border: none;
}

.btn-custom:hover {
    background-color: #00b4d8; /* Lighter blue on hover */
    color: #fff;
}

/* Form elements */
input, select, textarea {
    background-color: #333; /* Dark background for form inputs */
    color: #f0f0f0; /* Light text in inputs */
    border: 1px solid #444; /* Subtle border */
}

input::placeholder, textarea::placeholder {
    color: #888; /* Muted color for placeholder text */
}

input:focus, select:focus, textarea:focus {
    border-color: #0077b6; /* Blue border on focus */
    outline: none; /* Remove default outline */
}

/* Tables */
table {
    width: 100%;
    background-color: #222; /* Dark background for tables */
    color: #ddd; /* Light text */
    border-collapse: collapse; /* Remove gaps between cells */
}

th, td {
    border: 1px solid #444; /* Dark borders for table cells */
    padding: 10px;
    text-align: left;
}

th {
    background-color: #333; /* Slightly darker header */
    color: #fff;
}

/* Cards or any container with a light border */
.card {
    background-color: #2a2a2a; /* Slightly lighter than the body */
    color: #fff;
    border: 1px solid #444; /* Border with contrast */
    /*padding: 20px;
    /*margin-bottom: 20px;
}
.card .btn {
    text-decoration: none; /* Prevent underline on default */
}

/* Prevent underline when hovering over the button */
.card .btn:hover {
    text-decoration: none; /* Prevent underline on hover */
}

.nav-link:hover {
    text-decoration: none; /* Prevent underline on hover */
}
