@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
    font-family: "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: #b9b9b9;
    padding: 20px;
    color: black !important;
    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;
}

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

.search-result th {
    background-color: #f0f0f0;
}
.photo {
    width: 250px;
    height: 250px;
    object-fit:contain;
}
.pass_photo {
    width: 400px;
    height: 300px;
}

@media (max-width: 768px) {
    .info-block div{
        text-align:center !important;
    }
    .pass_photo {
        width: 200px;
    }
    .photo {
        width: 200px;
        height:200px;
        object-fit: contain;
    }
    .info-block {
        display: block;
    }
    .header h2 {
        font-size: 24px;
        max-width:100% !important;
    }

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

    .search-result th,
    .search-result td {
        font-size: 16px;
        padding: 8px;
        width:40%;
    }
    .footer p {
        font-size: 10px;
    }
    .stats{
        font-size: 12px !important;
        padding: 2px;
        line-height: 16px;
    }
    
}

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

.container{
    background-image: url('./watermark.png');
    background-repeat: repeat; 
    background-size: 150px 150px; 
    background-position: center; 
    background-color: rgba(255, 255, 255, 0.8); 
    background-blend-mode: multiply;
}