/* styles.css */
body {
    background-color: #343a40;
    /* Dark background color for the entire page */
    color: white;
    padding-top: 20px;
    /* Add top padding to the body */
    padding-bottom: 20px;
    /* Add bottom padding to the body */
}

/* Add the scoreboard theme styles to sections */
section {
    background-color: #495057;
    /* Section background color */
    border: 2px solid #9acd32;
    /* Section border color */
    border-radius: 10px;
    /* Section border radius */
    margin-bottom: 20px;
    /* Add bottom margin to sections */
    padding: 20px;
    /* Add padding to sections */
}

.btn-theme {
    background-color: #9acd32;
    /* Background color */
    color: #000;
    /* Text color */
    border: 1px solid #9acd32;
    /* Border color */
}

.btn-theme:hover {
    background-color: #000;
    /* Hover background color */
    color: #9acd32;
    /* Hover text color */
    border: 1px solid #9acd32;
    /* Hover border color */
}
/* Add specific styles to the game ticker section */
#game-ticker {
    background-color: #212529;
    /* Darker background color for game ticker */
    border: 2px solid #9acd32;
    /* Game ticker border color */
}
/* Adjust text color and font size as needed */
section h2 {
    color: #9acd32;
    /* Section heading color */
}

section p {
    color: white;
    /* Section text color */
    font-size: 16px;
    /* Section text font size */
}

.navbar {
    background-color: #212529 !important;
    /* Navbar background color for the scoreboard theme */
}

.navbar-dark .navbar-toggler-icon {
    background-color: #9acd32;
    /* Navbar toggler icon color */
}

.navbar-dark .navbar-toggler {
    border-color: #9acd32;
    /* Navbar toggler border color */
}

.navbar-nav .nav-link {
    color: white !important;
}

.bg-dark {
    background-color: #212529 !important;
    /* Dark background color for sections with class bg-dark */
    padding: 20px;
    /* Add padding to sections with class bg-dark */
}

.text-white {
    color: white !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* Add more styles as needed */

header {
    background-color: black;
    color: #9acd32;
}

nav a {
    color: #9acd32;
}

main {
    background-color: black;
    color: white;
}

footer {
    background-color: black;
    color: white;
}

/* Lime green color for headings */
h1,
h2,
h3 {
    color: #9acd32;
}

/* Lime green color for links */
a {
    color: #9acd32;
}
a:hover{
    color: #9acd32;
}
a:visited {
    color: #9acd32;
}

/* Lime green color for horizontal rule (hr) */
hr {
    border-color: #9acd32;
}

thead th {
     background-color: #9acd32 !important;
     color: black !important;
 }
