.notification {
    background: #e7f3fe;
    color: #31708f;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid #bce8f1;
    border-radius: 5px;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px; /* Přidání mezery pod statistiky */
}

.stat {
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 5px;
    padding: 20px;
    flex: 1;
    margin: 0 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.stat h2 {
    margin: 0 0 10px;
}

.stat p {
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .stats {
        display: flex;
        justify-content: center;
        flex-direction: column;
        
    }
}