body {
    font-family: Arial, sans-serif;
    margin: 0;

}

#qrcode {
    width: fit-content;
    margin:auto;
    margin-bottom: 1rem;
}

.osto-container {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: auto;
}

.osto-info {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.osto-info h2 {
    margin: 0;
    font-size: 20px;
}

.lupa-card {
    border: 1px solid #ddd;
    padding: 15px;
    margin: 10px 0;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.lupa-card:hover{
    cursor: pointer;
}

.lupa-card h3 {
    margin-top: 0;
    font-size: 18px;
}

.lupa-card p {
    margin: 5px 0;
}

.flex-box {
    display: flex; 
    flex-wrap: wrap;
    gap: 1rem; 
    flex-direction: row; 
}

.logo{
    width: 48%;
    height: fit-content;
}

#modal{
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0, 0.5);
    justify-items: center;
    align-items: center;
}

.date-input-div{
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.modal-div{
    background-color: white; 
    padding: 1rem; 
    gap: 0.3em;
    display: flex; 
    flex-direction: column;

}

@media (max-width: 320px) {
    .flex-box {
        flex-direction: column;  /* Change to column layout on small screens */
    }

    .logo {
        width: 100%;         /* Full width on small screens */
    }
    
    .date-input-div{
        flex-wrap: wrap;
    }

}

