/* Рабочее место сотрудника абонентского отдела */

[v-cloak] {
    display: none;
}

:root {
    --workplace-demo-header-height: 70px;
    --workplace-account-header-height: 118px;
    --workplace-account-footer-height: 54px;
    --workplace-page-gap: 12px;
    --workplace-min-width: 1180px;
}

html,
body {
    min-width: var(--workplace-min-width);
    min-height: 100%;
}

body {
    background: #f4f7fa;
    color: #1f2933;
    font-family: "Open Sans", Arial, sans-serif;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.workplace-app {
    min-height: 100vh;
    padding-top: var(--workplace-demo-header-height);
}

.workplace-viewport {
    min-width: var(--workplace-min-width);
    overflow-x: auto;
}

.workplace-shell {
    width: calc(100vw - var(--workplace-page-gap) * 2);
    min-width: 1156px;
    margin: 0 auto;
    padding: 12px 0;
}

.workplace-panel,
.account-workplace {
    background: #fff;
    border: 1px solid #dbe3ec;
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(31, 41, 51, 0.08);
}

.workplace-panel-header,
.account-toolbar,
.account-summary,
.account-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.workplace-panel-header {
    padding: 22px 24px;
    border-bottom: 1px solid #e5ebf1;
}

.workplace-panel-header h2,
.account-toolbar h2,
.section-placeholder h2 {
    margin: 0;
    color: #1f2933;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
}

.workplace-kicker {
    margin: 0 0 4px;
    color: #0063B0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.workplace-status {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 6px;
    background: #e7f2fb;
    color: #0063B0;
    font-size: 12px;
    font-weight: 700;
}

.workplace-status_debt {
    background: #fff1e6;
    color: #b95000;
}

.workplace-status_closed {
    background: #f1f5f8;
    color: #52616b;
}

.workplace-status_inactive {
    background: #fdecec;
    color: #b42318;
}

