/* Экран времени */
.time-screen {
    background: #f5f5f5;
    min-height: 100vh;
    padding-bottom: 20px;
}

.time-screen .screen-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    padding: 16px;
    margin: 0;
    background: white;
    border-bottom: 1px solid #e0e0e0;
}

/* Сетка времени */
.times-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 16px;
    background: #f5f5f5;
}

/* Карточка времени */
.time-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.time-item:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.time-item.selected {
    background: #667eea;
    color: white;
    border-color: #667eea;
}