:root {
    --primary-color: #1B1B1B; /* Dark */
    --secondary-color: #FFFFFF; /* White */
    --accent-color: #FF9554; /* Orange */
}

/*:root {*/
/*    --primary-color: #FFFFFF; !* White *!*/
/*    --secondary-color: #1B1B1B; !* Dark *!*/
/*    --accent-color: #FF9554; !* Orange *!*/
/*}*/

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0; /* Removed padding here */
    background-color: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center; /* Added to center horizontally */
    min-height: 100vh; /* Ensure body takes full height */
}

.container {
    height: 90%;
    padding: 20px 150px;
    width: 80%;
}

.logo {
    height: 30px;
    width: 30px;
    margin-bottom: 10px;
    border-radius: 50%;
    background-color: #FF9554;
}

.title {
    font-weight: bolder;
    font-size: 3em;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1em;
    color: var(--secondary-color);
    margin-bottom: 50px;
    width: 80%;
}

.reports-title {
    font-family: 'Roboto Mono', sans-serif;
    margin-left: 5%;
    font-size: 1.7em;
    font-weight: bold;
    margin-bottom: 10px;
}

.reports-title span{
    font-family: 'Roboto Mono', sans-serif;
    font-size: 0.7em;
    font-weight: normal;
}

.reports-container {
    display: flex;
    overflow-x: hidden;
    gap: 20px;
    padding-bottom: 20px;
    cursor: grab;
    margin-left: 10%;

}

.report-card {
    padding: 20px;
    border-radius: 8px;
    height: 300px;
    width: 250px;
    flex-shrink: 0;
    border: 2px solid var(--secondary-color); /* Border style: 2px width, solid, black color */
    
}

.report-card.highlight {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.report-number {
    font-family: 'Roboto Mono', sans-serif;
    font-weight: bolder;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.report-title {
    font-family: 'Roboto Mono', sans-serif;
    font-weight: bolder;
    font-size: 2em;
    margin-bottom: 10px;
}

.report-description {
    font-size: 0.9em;
}

/* Hide scrollbar */
.reports-container::-webkit-scrollbar {
    display: none;
}
.reports-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.report-card:hover{
    background-color: var(--accent-color);
    color: var(--primary-color);
}

b{
    color: var(--accent-color);
    font-size: 20px;
}

/* Media query for mobile */
@media (max-width: 768px) {
    body{
        padding: 10px;
    }

    .container {
        padding: 20px;
        overflow: hidden;
    }
    
    .reports-container {
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: auto;
        gap: 20px;
        width: 100%;
        margin: 0;
        align-items: center;
        cursor: grab;
    }
    
    .report-card {
        margin-left: 0;
        width: 80%;
    }

    .subtitle {
        font-size: 0.8em;
        color: #cccccc;
        margin-bottom: 40px;
        width: 100%;
    }

    .reports-title {
        margin-left: 0;
    }
    
    .title {
        font-size: 2em;
    }

    .subtitle {
        margin-bottom: 40px;
    }

    b{
        font-size: 15px;
    }

    .report-number {
        font-size: 2em;
    }

    .report-title {
        font-size: 1.5em;
    }
}