@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
@font-face {
    font-family: 'dincond';
    src: url('../fonts/DNC57.eot');
    src: url('../fonts/DNC57.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DNC57.woff') format('woff'),
    url('../fonts/DNC57.ttf') format('truetype'),
    url('../fonts/DNC57.svg#dincond') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'EB Garamond', 'Montserrat', 'Arial', sans-serif;
    font-size: 20px;
    background-color: #f5f8fb;
    margin: 0;
    padding: 0;
}


h2{
    font-size: 36px;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    background-color: #000;
    padding: 20px;
    color: white;
    text-align: left;
}

@media only screen and (min-width:768px) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.header h1 {
    margin: 0;
    font-size: 48px;
}

.info-block {
    margin: 20px 0;            
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-block h2 {
    font-size: 32px;
    color: #000;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.search-result {
    border-collapse: collapse;
    width: 100%;
    min-width: 600px; /* Makes sure table doesn't shrink too much */
}

.search-result th, .search-result td {
    border: 1px solid #d6d6d6;
    padding: 10px;
    text-align: left;
}

.search-result th {
    background-color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header h1 {
        font-size: 24px;
    }

    .info-block h2 {
        font-size: 16px;
    }

    .search-result th, .search-result td {
        font-size: 16px;
        padding: 8px;
    }
    .footer p{
        font-size: 10px;
    }
}

.footer {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    background-color: #f0f0f0;
    color: #666;
}
.stats {
    font-size: 18px;
}
.stats b{
    text-decoration: underline;
}