/* static/css/base.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #0a0a0a;
    color: #e4e4e4;
    height: 100vh;
    overflow: hidden;
}

#app {
    height: 100vh;
}

.app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background: #0d0d0d;
}

/* ===== Загрузка ===== */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #5a5a5a;
    font-size: 16px;
}

/* ===== Скролл ===== */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3a3a3a;
}
