/* Shifty – Corporate theme */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;800&display=swap');

:root {
    --shifty-primary: #1e3a5f;
    --shifty-primary-hover: #2d4a6f;
    --shifty-primary-light: #e2e8f0;
    --shifty-surface: #ffffff;
    --shifty-bg: #f1f5f9;
    --shifty-bg-alt: #f8fafc;
    --shifty-border: #cbd5e1;
    --shifty-border-focus: #1e3a5f;
    --shifty-text: #0f172a;
    --shifty-text-muted: #475569;
    --shifty-danger: #b91c1c;
    --shifty-danger-hover: #991b1b;
    --shifty-radius: 6px;
    --shifty-radius-sm: 4px;
    --shifty-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shifty-shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shifty-nav-bg: #1e3a5f;
    --shifty-nav-text: #f8fafc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--shifty-bg);
    color: var(--shifty-text);
    font-size: 0.875rem;
    line-height: 1.5;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Page */
.app-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.25rem 1rem;
    min-height: 100vh;
}
.app-page--wide {
    max-width: 1000px;
}
.app-page-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.app-nav-logout {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--shifty-text-muted);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--shifty-border);
    border-radius: var(--shifty-radius);
    background: var(--shifty-surface);
    transition: color 0.15s, border-color 0.15s;
}
.app-nav-logout:hover {
    color: var(--shifty-danger);
    border-color: var(--shifty-danger);
}

/* Back / Dashboard link – modern */
.app-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--shifty-text-muted);
    text-decoration: none;
    background: var(--shifty-surface);
    border: 1px solid var(--shifty-border);
    border-radius: var(--shifty-radius);
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.app-nav-back:hover {
    color: var(--shifty-primary);
    border-color: var(--shifty-primary);
    background: var(--shifty-bg-alt);
}
.app-nav-back::before {
    content: "←";
    font-weight: 600;
}

/* Breadcrumb (fallback) */
.app-breadcrumb { margin-bottom: 0.75rem; }
.app-breadcrumb a {
    color: var(--shifty-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.app-breadcrumb a:hover { color: var(--shifty-primary-hover); text-decoration: underline; }

/* Headings */
.app-page h1 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--shifty-text);
    margin-bottom: 0.25rem;
}
.app-page h2 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--shifty-text);
    margin-bottom: 0.5rem;
}

/* Cards */
.app-card {
    max-width: 70vw;
    background: var(--shifty-surface);
    border-radius: var(--shifty-radius);
    box-shadow: var(--shifty-shadow);
    border: 1px solid var(--shifty-border);
    padding: 0.875rem 1rem;
    margin-bottom: 0.75rem;
}
.app-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--shifty-text);
    margin-bottom: 0.5rem;
}
.admin-form-card { max-width: 70vw; padding: 1.25rem 1.25rem; }
.admin-form-section {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--shifty-text);
    margin: 1rem 0 0.5rem 0;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--shifty-border);
}
.admin-form-section:first-child { margin-top: 0; }

/* Form */
.app-form-row {
    margin-bottom: 0.625rem;
}
.app-form-readonly {
    display: block;
    font-size: 0.875rem;
    color: var(--shifty-text);
    padding: 0.35rem 0;
}
.app-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.app-form-row label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--shifty-text);
    margin-bottom: 0.2rem;
}
.app-form-row.app-form-row--checkbox label {
    display: inline;
    margin-bottom: 0;
}
.app-form-row.app-form-row--checkbox .app-checkbox {
    vertical-align: middle;
}
.app-input,
.app-select {
    width: 100%;
    max-width: 280px;
    padding: 0.4rem 0.6rem;
    font-size: 0.8125rem;
    font-family: inherit;
    border: 1px solid var(--shifty-border);
    border-radius: var(--shifty-radius-sm);
    background: var(--shifty-surface);
    color: var(--shifty-text);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.app-checkbox {
    width: auto;
    max-width: none;
    margin-right: 0.5rem;
    cursor: pointer;
    accent-color: var(--shifty-primary);
}
.app-input:focus,
.app-select:focus {
    outline: none;
    border-color: var(--shifty-border-focus);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.12);
}

/* Buttons – clear and consistent */
.app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: inherit;
    border: none;
    border-radius: var(--shifty-radius-sm);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, transform 0.05s;
}
.app-btn:active { transform: scale(0.98); }
.app-btn-primary {
    background: var(--shifty-primary);
    color: #fff;
}
.app-btn-primary:hover {
    background: var(--shifty-primary-hover);
}
.app-btn-secondary {
    background: var(--shifty-surface);
    color: var(--shifty-text);
    border: 1px solid var(--shifty-border);
}
.app-btn-secondary:hover {
    background: var(--shifty-bg-alt);
    border-color: #94a3b8;
}
.app-btn-danger {
    background: #e5e7eb;
    color: #374151;
}
.app-btn-danger:hover {
    background: #d1d5db;
    color: #1f2937;
}
.app-btn-sm {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
}

/* List items */
.app-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: var(--shifty-surface);
    border: 1px solid var(--shifty-border);
    border-radius: var(--shifty-radius-sm);
    margin-bottom: 0.375rem;
    font-size: 0.8125rem;
}
.app-list-item-actions {
    display: flex;
    gap: 0.25rem;
}
.emp-badge-admin {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.1rem 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--shifty-primary, #1e3a5f);
    color: #fff;
    border-radius: var(--shifty-radius-sm, 4px);
}

/* Dashboard – corporate */
.app-dash {
    min-height: 100vh;
    background: var(--shifty-bg);
    display: flex;
    flex-direction: column;
}
.app-dash-bar {
    background: var(--shifty-nav-bg);
    color: var(--shifty-nav-text);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.app-dash-bar-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
}
.app-dash-bar-sub {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.85);
}
.app-dash-bar-user {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.9);
    margin-left: auto;
    margin-right: 0.75rem;
}
.app-dash-bar-user-name,
.app-dash-bar-user-company,
.app-dash-bar-user-role {
    white-space: nowrap;
}

/* Shared navbar (all pages) – tüm öğeler 1vh yazı boyutu */
#navbar-container,
#navbar-container *,
.navbar-and-calendar-wrap,
.navbar-and-calendar-wrap * {
    font-size: 1vh;
}
#navbar-container {
    width: 100%;
}
.app-navbar {
    width: 100%;
    background: var(--shifty-nav-bg);
    color: var(--shifty-nav-text);
    padding: 0.15rem 0.35rem;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem 1rem;
}
.app-navbar-brand {
    flex-shrink: 0;
}
.app-navbar-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    min-width: 0;
}
.app-navbar-admin-rows {
    display: flex;
    flex-direction: column;
    gap: 0.1rem 0;
    width: 100%;
    min-width: 0;
    justify-content: center;
    align-items: center;
}
.app-navbar-admin-rows .app-navbar-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    justify-content: center;
}
.app-navbar-company-select-row {
    justify-content: center;
}
.app-navbar-company-links-row--empty {
    display: none;
}
.app-navbar-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem 0;
    margin-left: auto;
    flex-shrink: 0;
}
.app-navbar-right-top {
    display: flex;
    align-items: center;
    gap: 0.5rem 1rem;
}
.app-navbar-tes-rules {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.9);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.4rem;
    justify-content: flex-end;
}
.app-navbar-tes-rules:empty {
    display: none;
}
.app-navbar-tes-rules .employee-tes-rules-title {
    font-weight: 600;
    margin-right: 0.25rem;
    color: #fff;
}
.app-navbar-tes-rules .employee-tes-rules-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
}
.app-navbar-tes-rules .employee-tes-rule-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.1rem 0.25rem;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 3px;
    font-size: inherit;
}
.app-navbar-tes-rules .employee-tes-rule-name {
    color: rgba(255,255,255,0.85);
}
.app-navbar-tes-rules .employee-tes-rule-value {
    font-weight: 600;
    color: #fff;
}
.app-navbar-company-select {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 0.2rem 0.4rem;
    border-radius: var(--shifty-radius-sm);
    font-size: 0.75rem;
    min-width: 10rem;
    max-width: 14rem;
}
.app-navbar-company-select option {
    background: var(--shifty-nav-bg);
    color: #fff;
}
.app-navbar-menu-link {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.95);
    text-decoration: none;
}
.app-navbar-menu-link:hover {
    color: #fff;
    text-decoration: underline;
}
.app-navbar-brand {
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
}
.app-navbar-brand:hover {
    color: rgba(255,255,255,0.95);
}
.app-navbar-user,
.app-dash-bar-user {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
}
.app-navbar-user-name,
.app-navbar-user-company,
.app-navbar-user-role {
    white-space: nowrap;
}
.app-navbar-user-link {
    color: inherit;
    text-decoration: none;
}
.app-navbar-user-link:hover {
    text-decoration: underline;
}
.app-navbar-logout {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 0.2rem 0.45rem;
    border-radius: var(--shifty-radius-sm);
    text-decoration: none;
    cursor: pointer;
}
.app-navbar-logout:hover {
    background: rgba(255,255,255,0.3);
    color: #fff;
}
.app-navbar-calendar-row {
    width: 100%;
    background: var(--shifty-nav-bg);
    color: var(--shifty-nav-text);
    padding: 0.15rem 0.35rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
}
.calendar-row-total {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    min-height: 2.2vh;
    flex-shrink: 0;
}
.calendar-row-total-inner {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.calendar-row-total.brutto-at-bottom .calendar-row-total-inner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.35rem 0.5rem;
    background: var(--shifty-nav-bg);
    color: var(--shifty-nav-text);
    justify-content: center;
    z-index: 100;
}
.calendar-row-total .total-label,
.calendar-row-total .hours-footer-cell {
    color: rgba(255,255,255,0.95);
    text-align: left;
}
.calendar-row-total.brutto-at-bottom .calendar-row-total-inner .total-label,
.calendar-row-total.brutto-at-bottom .calendar-row-total-inner .hours-footer-cell {
    text-align: center;
}
.calendar-row-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
}
.app-navbar-calendar-row .calendar-period-selects {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.app-navbar-calendar-row .calendar-period-selects .calendar-select,
.app-navbar-calendar-row .calendar-period-selects .month-select,
.app-navbar-calendar-row .calendar-period-selects .year-select,
.app-navbar-calendar-row .calendar-period-selects #viewModeSelect,
.app-navbar-calendar-row .calendar-period-selects #threeWeekBlockSelect,
.app-navbar-calendar-row .calendar-period-selects .employee-select {
    background: transparent;
    color: rgba(255,255,255,0.95);
    border: none;
    border-radius: 0;
    padding: 0.2rem 0.25rem;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    text-decoration: underline;
    text-underline-offset: 0.15em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 0;
}
.app-navbar-calendar-row #monthSelect {
    min-width: 5.5rem;
}
.app-navbar-calendar-row #yearSelect {
    min-width: 3.5rem;
}
.app-navbar-calendar-row #viewModeSelect {
    min-width: 6rem;
}
.app-navbar-calendar-row .calendar-period-selects option,
.app-navbar-calendar-row .calendar-select option,
.app-navbar-calendar-row .month-select option,
.app-navbar-calendar-row .year-select option {
    background: #1e3a5f;
    color: #fff;
}
.app-navbar-calendar-row .nav-btn,
.app-navbar-calendar-row .employee-btn {
    color: var(--shifty-nav-text);
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
}
.app-navbar-calendar-row .nav-link,
.app-navbar-calendar-row .calendar-today-link {
    color: rgba(255,255,255,0.95);
    background: none;
    border: none;
    padding: 0.2rem 0.35rem;
    text-decoration: underline;
    text-underline-offset: 0.15em;
    font-weight: 500;
}
.app-navbar-calendar-row .nav-link:hover,
.app-navbar-calendar-row .calendar-today-link:hover {
    color: #fff;
}
.app-navbar-calendar-row .employee-label,
.app-navbar-calendar-row .period-label {
    color: rgba(255,255,255,0.95);
}
.employee-calendar-scope-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-right: 0.5rem;
}
.employee-calendar-scope-wrap .employee-scope-link {
    padding: 0.2rem 0.35rem;
}
.employee-calendar-scope-wrap .employee-scope-link.active {
    font-weight: 600;
    text-decoration: none;
}
.employee-calendar-scope-wrap .employee-scope-sep {
    color: rgba(255,255,255,0.6);
    font-size: 0.9em;
}
.app-dash-content {
    flex: 1;
    padding: 1.25rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}
.app-dash-header {
    margin-bottom: 1rem;
}
.app-dash-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.app-dash-header-row .app-dash-title {
    margin-bottom: 0.15rem;
}
.app-dash-company-list {
    margin-bottom: 1.25rem;
}
.app-dash-company-list .app-dash-section-title {
    margin-bottom: 0.5rem;
}
.app-dash-company-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--shifty-surface);
    border: 1px solid var(--shifty-border);
    border-radius: var(--shifty-radius);
    overflow: hidden;
}
.app-dash-company-li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--shifty-border);
    flex-wrap: wrap;
}
.app-dash-company-li:last-child {
    border-bottom: none;
}
.app-dash-company-name {
    flex: 1;
    min-width: 0;
}
.app-dash-company-actions {
    display: flex;
    gap: 0.35rem;
    flex-shrink: 0;
}
.app-dash-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--shifty-text);
}
.app-dash-subtitle {
    font-size: 0.8125rem;
    color: var(--shifty-text-muted);
    margin-top: 0.15rem;
}
.app-dash-company-info {
    margin-bottom: 1rem;
}
.app-dash-tili-card {
    max-width: 70vw;
}
.app-dash-tili-card .app-card-title {
    margin-bottom: 0.5rem;
}
.app-dash-tili-row {
    font-size: 0.8125rem;
    color: var(--shifty-text);
    margin: 0.35rem 0;
}
.app-dash-tili-label {
    font-weight: 500;
    color: var(--shifty-text-muted);
    margin-right: 0.35rem;
}
.app-dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.app-dash-card {
    max-width: 70vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background: var(--shifty-surface);
    border-radius: var(--shifty-radius);
    border: 1px solid var(--shifty-border);
    text-decoration: none;
    color: var(--shifty-text);
    font-weight: 500;
    font-size: 0.875rem;
    text-align: center;
    transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
    box-shadow: var(--shifty-shadow);
}
.app-dash-card:hover {
    border-color: var(--shifty-primary);
    background: var(--shifty-surface);
    color: var(--shifty-primary);
    box-shadow: var(--shifty-shadow-md);
}
.app-dash-card:active { opacity: 0.95; }
.app-dash-admin-section {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--shifty-border);
}
.app-dash-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--shifty-text-muted);
    margin: 0 0 0.75rem 0;
}
.app-dash-card--admin {
    border-style: dashed;
}
.app-dash-logout {
    margin-top: 1rem;
}
.app-dash-logout .app-btn {
    background: var(--shifty-text-muted);
    color: #fff;
    font-size: 0.8125rem;
    padding: 0.35rem 0.625rem;
}
.app-dash-logout .app-btn:hover {
    background: #475569;
}

/* Login – corporate */
.app-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--shifty-bg);
    padding: 1rem;
}
.app-login-box {
    width: 100%;
    max-width: 320px;
    background: var(--shifty-surface);
    padding: 1.5rem;
    border-radius: var(--shifty-radius);
    border: 1px solid var(--shifty-border);
    box-shadow: var(--shifty-shadow-md);
}
.app-login-box h1 {
    font-size: 1.125rem;
    text-align: center;
    color: var(--shifty-text);
    margin-bottom: 0.5rem;
}
.app-login-box .login-sub {
    font-size: 0.8125rem;
    color: var(--shifty-text-muted);
    text-align: center;
    margin-bottom: 1rem;
}
.app-login-box .app-form-row { margin-bottom: 0.75rem; }
.app-login-box .app-input { max-width: none; padding: 0.4rem 0.5rem; }
.app-login-box .app-btn {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.45rem 0.625rem;
    font-size: 0.8125rem;
}
.app-login-error {
    color: var(--shifty-danger);
    font-size: 0.8125rem;
    margin-top: 0.35rem;
    text-align: center;
}

/* Modal (popup) */
.app-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}
.app-modal-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}
.app-modal {
    background: var(--shifty-surface);
    border-radius: var(--shifty-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow: auto;
    display: flex;
    flex-direction: column;
}
.app-modal-wide { max-width: 520px; }
.app-modal-tall { max-height: 85vh; }
.app-modal-body-scroll { max-height: 60vh; overflow-y: auto; }
.app-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--shifty-border);
    flex-shrink: 0;
}
.app-modal-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--shifty-text);
}
.app-modal-close {
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--shifty-text-muted);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    border-radius: var(--shifty-radius-sm);
    transition: background 0.15s, color 0.15s;
}
.app-modal-close:hover {
    background: var(--shifty-bg-alt);
    color: var(--shifty-text);
}
.app-modal-body {
    padding: 1.25rem;
    overflow: auto;
}
.app-modal-body .app-form-row { margin-bottom: 0.75rem; }
.app-modal-body .app-input,
.app-modal-body .app-select { max-width: none; }
.app-modal-body .app-btn { margin-right: 0.5rem; margin-top: 0.25rem; }

/* Utilities */
.text-muted { color: var(--shifty-text-muted); font-size: 0.8125rem; }
.mt-1 { margin-top: 0.375rem; }
.mb-2 { margin-bottom: 0.75rem; }
