/* Базовые сбросы */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
}

#app {
    min-height: 100vh;
    background: #f5f5f5;
}

.loading {
    text-align: center;
    padding: 30px;
    color: #666;
}

.error {
    background: #fee;
    color: #c33;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
}

/* Стили для блока выбора */
.selection-header {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.selection-info {
    font-size: 14px;
    color: #667eea;
    font-weight: 500;
    line-height: 1.4;
}

.selection-placeholder {
    font-size: 14px;
    color: #999;
    font-style: italic;
}
