/*
 * standalone.css — стили только для автономного режима (standalone).
 *
 * Подключается ПОСЛЕ остальных CSS на index.php (standalone-ветка),
 * login.php и register.php, поэтому может переопределять их правила.
 * В режиме Bitrix24 НЕ подключается.
 */

/* Header: full-width dark-grey bar, content inset 50px each side */
.header-wrapper {
    padding: 0;              /* remove the 20px side inset so the bar is full width */
}
header {
    border-radius: 0;        /* square edges for a full-bleed bar */
    padding: 5px 50px;       /* logo/nav inset 50px on both sides (was 30px) */
}

/* Fix: allow vertical scrolling in standalone (shared body rule blocks it) */
body {
    overflow-y: auto;
}

/* Content sections: match the header's 50px side inset (top/bottom kept) */
#timing-page {
    padding-left: 50px;
    padding-right: 50px;
}
#task-page {
    padding-left: 50px;
    padding-right: 50px;
}

/* Force exact vertical centering of the logo (override inherited float) */
#logo {
    display: flex;
    align-items: center;
    height: 50px;
}
