@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

:root {    --bg-color: #171717;
    --text-color: #e0e0e0;
    --accent-color: #2c2c2c;
    --secondary-text-color: #888888;
    --card-bg-color: #282828;
    --border-color: #444444;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    color: #fff;
    background-color: #171717; /* Главный фон */
    box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

#app {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ffffff;
    margin-top: 0px;
    background-color: #171717;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative; /* Added for positioning child elements */
    width: 100%; /* Добавляем это свойство */
    padding-top: env(safe-area-inset-top);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-y: scroll; /* Всегда показывать вертикальную прокрутку */
    scrollbar-width: none; /* Для Firefox */
    -ms-overflow-style: none;  /* Для Internet Explorer и Edge */
}

body::-webkit-scrollbar {
    display: none; /* Для Chrome, Safari и Opera */
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center; /* Возвращаем это свойство */
    margin-top: 0; /* Убираем верхний внешний отступ */
    min-height: calc(100vh - 60px); /* Adjust for nav height */
    padding-bottom: 60px; /* Space for fixed bottom nav */
    padding-top: env(safe-area-inset-top); /* Учитываем верхнюю безопасную зону */
}

.main-content-wrapper {
    padding-top: env(safe-area-inset-top);
    min-height: calc(100vh - env(safe-area-inset-top));
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.container {
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px; /* Add margin to separate from other content */
}

h1 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 2.5em;
    font-weight: 600;
}

p {
    color: var(--secondary-text-color);
}

input {
    width: calc(100% - 20px);
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #333333;
    color: var(--text-color);
}

input:focus {
    outline: none;
    border-color: var(--accent-color);
}

button {
    width: calc(100% - 20px);
    padding: 12px;
    background-color: var(--accent-color);
    color: white;
    position: relative;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.users-icon {
  width: auto; /* Adjust size as needed */
  height: 15px; /* Adjust size as needed */
  vertical-align: middle;
  margin-bottom: 3px;
}
