/* Основные стили */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.header {
    background: #2c3e50;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
}

.user-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Стили таблицы */
.tabulator {
    margin: 1rem;
    font-size: 14px;
}

.tabulator-header {
    background: #34495e;
    color: white;
}

/* Формы */
input, button {
    padding: 0.5rem;
    margin: 0.25rem 0;
    border-radius: 4px;
    border: 1px solid #ddd;
}

button {
    cursor: pointer;
    background: #3498db;
    color: white;
    border: none;
}