@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    box-sizing: border-box;
}
.display-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 3rem 4rem;
    width: 100%;
    max-width: 800px;
    text-align: center;
}
h1 {
    font-size: 3rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}
p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
}
.stats-display {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 2.5rem 0;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.stat-display-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}
.stat-label {
    font-weight: 500;
    font-size: 1.5rem;
    color: #666;
}
.stat-value {
    font-weight: 700;
    font-size: 2.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
}
/* Rozložení statistik */
.stat-value.breakdown {
    font-size: 2rem;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.stat-value.breakdown > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 80px;
}
.stat-value.breakdown svg {
    width: 48px;
    height: 48px;
}

#qrcode-container {
    margin-top: 2rem;
}
#qrcode {
    width: 256px;
    height: 256px;
    margin: 0 auto 1rem auto;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
}
#scan-text {
    font-weight: 500;
    color: #007bff;
    font-size: 1.2rem;
    margin-bottom: 0;
}
