@font-face {
    font-family: 'GrotaSans';
    src: url('fonts/GrotaSansRd-Bold2.otf') format('opentype');
}


body {
    margin: 0;
    background-color: #8B1C1C;
    color: white;
    font-family: 'GrotaSans', Arial, sans-serif;
}

/* TOP BAR */
.top-bar {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    padding: 15px;
}

/* CENTER TEXT */
.header-center {
    text-align: center;
}

    .header-center h1 {
        margin: 0;
    }

    .header-center p {
        margin: 5px 0 0 0;
    }
/* BUTTON STYLE */
button {
    background: white;
    color: #8B1C1C;
    border: none;
    padding: 10px 16px;
    font-family: 'GrotaSans', Arial, sans-serif;
    font-size: 14px;
    font-weight: bold; /* 👈 added */

    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}
/* FILTERS */
.filters {
    display: grid;
    grid-template-columns: 120px 1fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 25px 30px;
}

select {
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    font-family: 'GrotaSans', Arial, sans-serif;
    font-weight: bold;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    color: #8B1C1C;
    /* 👇 THIS ADDS THE TRIANGLE */
    background-image: url("data:image/svg+xml;utf8,<svg fill='%238B1C1C' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 35px; /* space for arrow */
}
option {
    font-family: 'GrotaSans', Arial, sans-serif;
}
.results {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    padding: 30px;
    border-top: 2px solid white;
}


.left-panel {
    padding: 20px;
    border-right: 2px solid white;
}


.big {
    font-size: 80px;
    font-weight: bold;
    margin: 10px 0 20px 0;
}
.results {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    padding: 20px;
    border-top: 2px solid white;
}

.right-panel {
    padding: 10px;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
}


th, td {
    border-bottom: 1px solid white;
    padding: 10px;
    text-align: left;
}


th {
    text-align: left;
    padding: 12px;
    font-size: 13px;
    border-bottom: 2px solid white;
}

td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.left-panel h2 {
    font-size: 18px;
    margin-bottom: 5px;
}

.left-panel h3 {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 2px;
}
.top-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 20px 30px;
}

.header-center h1 {
    font-size: 26px;
}

.header-center p {
    font-size: 14px;
    opacity: 0.9;
}