:root {
    --main-green: #D2042D; /* Define the main green color variable */
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    margin: 0;
    padding: 20px;
    color: #f0f0f0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

h1 {
    text-align: center;
    color: var(--main-green); /* Use the main green color variable */
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

input[type="text"] {
    padding: 15px;
    font-size: 18px;
    border: 1px solid #666;
    border-radius: 10px;
    width: 70%;
    background-color: #333333;
    color: #f0f0f0;
    margin-right: 10px; /* Add some space between input and button */
}

button {
    padding: 15px 25px; /* Adjust padding for better button appearance */
    font-size: 18px;
    border: 1px solid var(--main-green); /* Use the main green color variable */
    border-radius: 10px;
    background-color: var(--main-green); /* Use the main green color variable */
    color: #000;
    cursor: pointer;
}

button:hover {
    background-color: #ff0000; /* Adjusted shade of green */
}

.progress-bar {
    width: 100%;
    background-color: #444;
    border-radius: 10px;
    margin: 30px 0;
    overflow: hidden;
    display: none;
}

.progress-bar-fill {
    height: 20px;
    width: 0;
    background-color: var(--main-green); /* Use the main green color variable */
    transition: width 0.5s;
}

.progress-text {
    text-align: center;
    color: #f0f0f0;
    display: none;
}

.card {
    display: inline-block;
    width: calc(25% - 64px); /* Adjust the width to fit four cards in a row */
    margin-right: 20px; /* Add margin between cards */
    vertical-align: top; /* Align cards to the top */
    padding: 20px;
    border: 2px solid var(--main-green); /* Use the main green color variable */
    border-radius: 15px;
    margin-bottom: 30px;
    background-color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.show-games {
    cursor: pointer;
    color: #000;
    background-color: var(--main-green); /* Use the main green color variable */
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    display: inline-block;
    margin-top: 20px;
}

.card img {
    border-radius: 50%;
    margin-bottom: 20px;
    width: 100px;
    height: 100px;
}

.card .info {
    flex: 1;
    text-align: center;
}

.card .info h2 {
    margin: 0 0 10px 0;
    color: var(--main-green); /* Use the main green color variable */
}

.card .info p {
    margin: 0;
    color: #cccccc;
}

/* Information Styling */
.card .info {
    text-align: left; /* Align text to the left */
    color: #fff; /* Set text color to white */
}

.card .info h2 {
    margin: 0;
    color: var(--main-green); /* Use the main green color variable */
    font-size: 24px;
}

.card .info p {
    margin: 5px 0;
    color: #ccc;
}

/* Games List Styling */
.games-list {
    display: none;
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.games-list li {
    margin-bottom: 10px;
}

.games-list li a {
    text-decoration: none;
    color: var(--main-green); /* Use the main green color variable */
    font-size: 16px;
}

.games-list li a:hover {
    text-decoration: underline;
}

/* Game Info Styling */
.game-info {
    padding: 10px;
    border-top: 1px solid #444;
    margin-top: 10px;
    background-color: #444; /* Adjust background color */
}

.game-info span {
    display: block;
    margin-bottom: 5px;
    color: #fff; /* Set text color to white */
    font-size: 16px;
}

/* Game Header Styling */
.game-header {
    font-weight: bold;
    color: #fff;
    font-size: 18px;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: var(--main-green); /* Use the main green color variable */
}

footer p {
    margin: 0;
}

.progress-bar {
    width: 100%;
    background-color: #444;
    border-radius: 10px;
    margin: 30px 0;
    overflow: hidden;
    /* Remove 'display: none;' */
}

.progress-text {
    text-align: center;
    color: #f0f0f0;
    /* Add 'display: block;' */
    display: block;
}

/* Add the following CSS to your style.css file */

.faq-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
}

.faq-container h2 {
    text-align: center;
    color: var(--main-green); /* Use the main green color variable */
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
    color: orange !important; /* Change link color to orange */
}

.faq-item h3 {
    color: var(--main-green); /* Use the main green color variable */
    margin-bottom: 10px;
}

.faq-item p {
    color: #cccccc;
    margin: 0;
}

.progress-text {
    font-size: 16px;
    font-weight: bold;
}

/* Add custom CSS for orange bullet points */
.green-bullet-points {
    list-style-type: disc; /* Set bullet points */
}

.green-bullet-points a {
    color: var(--main-green); /* Change link color to orange */
    font-weight: bold; /* Make the text bold */
    font-size: 18px; /* Increase font size */
}

/* Add custom CSS for project descriptions */
.project-description {
    margin-top: 20px; /* Add space between projects and descriptions */
}

.project-description p {
    margin-bottom: 20px; /* Add space between project descriptions */
}



#download-btn {
    padding: 15px 25px;
    font-size: 18px;
    border: 1px solid var(--main-green);
    border-radius: 10px;
    background-color: var(--main-green);
    color: #000;
    cursor: pointer;
    display: block;
    margin: 20px auto;
}

#download-btn:hover {
    background-color: #ff0000;
}


/* Styling for the input elements */
input[type="month"] {
    padding: 10px;
    font-size: 18px;
    border: 1px solid #666;
    border-radius: 10px;
    width: 100%;
    background-color: #333333;
    color: #f0f0f0;
    cursor: pointer;
}

input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    accent-color: #5cb85c; /* Change checkbox color */
}

/* Styling for labels */
label {
    color: #f0f0f0;
    font-size: 18px;
    cursor: pointer;
}

/* Container for the date picker and the All time option */
.date-picker-group {
    display: flex;
    align-items: center;
}

/* Label for the date picker, including the calendar icon */
.date-label {
    display: flex;
    align-items: center;
}

/* Label for the All time option */
.all-time-label {
    display: flex;
    align-items: center;
}

/* General button styling */
button {
    cursor: pointer;
}
