/* Экран приветствия */
.welcome-screen {
    min-height: 100vh;
    background: #f5f5f5;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
}

.welcome-screen .container {
    max-width: 400px;
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.welcome-screen h1 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-size: 24px;
}

.welcome-screen p {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
}

/* Кнопка Мои бронирования */
.welcome-screen .btn-primary.btn-bookings {
    background: #4caf50;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    color: white;
    margin-top: 10px;
    transition: all 0.2s;
}

.welcome-screen .btn-primary.btn-bookings:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.main-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.main-actions .btn-primary {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.main-actions .btn-primary:first-child {
    background: #667eea;
    color: white;
}

.main-actions .btn-primary:last-child {
    background: #ff6b35;
    color: white;
}

.main-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-block p {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}