.app-footer {
    backdrop-filter: blur(8px);
    background: var(--app-footer-bg);
}

[data-bs-theme='dark'] .app-footer-link-button {
    color: var(--app-muted);
}

.app-footer-link-button {
    line-height: inherit;
}

.app-footer-link-button:hover,
.app-footer-link-button:focus-visible {
    color: var(--app-text);
}

[data-bs-theme='dark'] .app-footer {
    border-color: rgba(96, 165, 250, 0.3);
}

.cmp-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1250;
    padding: 0.85rem;
}

.cmp-banner-inner {
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 1rem;
    border: 1px solid var(--bs-border-color);
    background: var(--app-surface-strong);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem 1.2rem;
    padding: 0.9rem 1rem;
}

.cmp-banner-content {
    flex: 1 1 360px;
    min-width: 0;
}

.cmp-banner-title {
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.cmp-banner-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.45rem;
}

[data-bs-theme='dark'] .cmp-banner-inner {
    border-color: rgba(148, 163, 184, 0.3);
    background: rgba(8, 19, 37, 0.96);
}

body.cmp-banner-visible {
    padding-bottom: 6.5rem;
}

.cmp-status {
    border-radius: 0.6rem;
    padding: 0.45rem 0.6rem;
}

.cmp-status.text-success {
    background: rgba(22, 163, 74, 0.16);
}

.cmp-status.text-danger {
    background: rgba(239, 68, 68, 0.16);
}

@media (max-width: 767.98px) {
    body.cmp-banner-visible {
        padding-bottom: 8.3rem;
    }

    .cmp-banner-actions {
        width: 100%;
        justify-content: stretch;
    }

    .cmp-banner-actions .btn {
        flex: 1 1 140px;
    }
}

.job-card .job-preview {
    height: 180px;
    border-radius: 0.75rem;
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid var(--bs-border-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-bs-theme='dark'] .job-card .job-preview {
    background: rgba(148, 163, 184, 0.1);
}

.job-preview-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.job-placeholder {
    font-size: 0.9rem;
}

.job-card-title {
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.job-card-meta-list {
    display: grid;
    gap: 0.38rem;
    margin: 0;
}

.job-card-meta-row {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 0.55rem;
    align-items: start;
}

.job-card-meta-label {
    margin: 0;
    color: var(--app-muted);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.job-card-meta-label::after {
    content: ':';
    margin-left: 0.18rem;
}

.job-card-meta-value {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.job-list-table-wrap {
    overflow-x: auto;
    overflow-y: hidden;
}

.job-list-table {
    width: 100%;
    min-width: 860px;
    table-layout: fixed;
}

.job-list-table th {
    color: var(--app-muted);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.job-list-col-preview {
    width: 72px;
}

.job-list-col-status {
    width: 132px;
    white-space: nowrap;
}

.job-list-col-type {
    width: 260px;
    min-width: 260px;
    white-space: normal;
    overflow-wrap: anywhere;
}

.job-list-col-cost {
    width: 48px;
    min-width: 48px;
    white-space: nowrap;
    text-align: right;
}

.job-list-col-actions {
    width: 104px;
    min-width: 104px;
    white-space: nowrap;
}

