.time-count {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.time-entry {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    background: #ffffff;
    padding: 20px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.time-entry span {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.time-entry .label {
    text-transform: uppercase;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .time-count {
        gap: 10px;
        padding: 15px;
    }

    .time-entry {
        min-width: 70px;
        padding: 15px 5px;
    }

    .time-entry span {
        font-size: 24px;
    }

    .time-entry .label {
        font-size: 12px;
    }
} 