/* Общие настройки страницы */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; /* Более современные шрифты */
    background: #f0f2f5;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    color: #333;
}

#siteIndicatorsContainer {
	flex-grow: 1;
	text-align: center;
}

#page {
    background: white;
    padding: 30px;
    min-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Выбор языка */
#langSelect {
    text-align: right;
    margin-bottom: 15px;
	display: flex;
	align-items: center; /* Центрирование по вертикали */
	width: 100%;
}

#langSelect select {
    border: 1px solid #ddd;
    padding: 10px 8px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

table#accountInfo, table#sessionsInfo {
    width: 100%;
    border-collapse: collapse; /* Убирает двойные рамки */
    overflow: hidden;
}

/* Заголовок "ACCOUNT INFO" */
#accountInfo_topHeader th, #sessionsInfo_topHeader th {
    background-color: #fff;
    color: #1a73e8; /* Деловой синий акцент */
    font-size: 14px;
    letter-spacing: 1px;
    padding-top: 30px;
    padding-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid #f0f2f5;
}

/* Заголовки столбцов (FIO, phone и т.д.) */
#accountInfo_headers th, #sessionsInfo_headers th {
    background-color: #f8f9fa;
    color: #5f6368;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

/* Строка с данными */
#accountInfo_data td, #sessionsInfo_data td {
    padding: 15px;
    font-size: 14px;
    color: #3c4043;
    border-bottom: 1px solid #f1f1f1;
    text-align: center;
}

/* При наведении подсвечиваем строку */
#accountInfo_data:hover {
    background-color: #fcfcfc;
}

#accountInfo {
    text-align: center;
}