/* =========================================================
   RESET / BASIS
   ========================================================= */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #cccccc;
    color: #222222;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

a {
    color: inherit;
}


/* =========================================================
   ALLGEMEINE LAYOUT-BASIS
   ========================================================= */
.page-content {
    padding: 40px 0;
    margin-top: 120px;
}

.content-frame {
    width: 85%;
    margin: 60px auto;
    background: #ffffff;
    padding: 60px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.statusboard {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}


/* =========================================================
   TOP FRAME / HEADER / MENÜ
   ========================================================= */
.top-frame {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    overflow: hidden;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.top-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 160px;
    object-fit: cover;
    z-index: 1;
}

.title {
    position: absolute;
    left: 50px;
    top: 40%;
    font-size: 60px;
    color: #333333;
    font-weight: bold;
    z-index: 2;
}

.title-link {
    text-decoration: none;
    color: inherit;
}

.hamburger {
    position: absolute;
    right: 40px;
    top: 20px;
    height: 90px;
    font-size: 60px;
    line-height: 90px;
    cursor: pointer;
    z-index: 3;
    color: #333333;
}

.menu {
    display: none;
    position: fixed;
    right: 40px;
    top: 160px;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    z-index: 9999;
    min-width: 320px;
}

.menu a {
    display: block;
    text-decoration: none;
    color: #000000;
    font-size: 30px;
    margin: 15px 0;
}

.menu a:hover {
    text-decoration: underline;
}

.menu hr {
    margin: 20px 0;
}

.menu-section-title {
    font-size: 18px;
    font-weight: bold;
    color: #666666;
    margin-top: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================================
   TYPOGRAFIE
   ========================================================= */
.page-title {
    font-size: 50px;
    margin: 0 0 40px 0;
}

.main-headline {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 40px;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    margin: 30px 0 10px 0;
    text-align: left;
}

.section-title:first-of-type {
    margin-top: 0;
}

.text-large {
    font-size: 20px;
    margin: 20px 0;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}


/* =========================================================
   FORMULARE
   ========================================================= */
.form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.input,
.textarea,
.select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #bdbdbd;
    background: #ffffff;
    color: #222222;
}

.textarea {
    min-height: 150px;
    resize: vertical;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}


/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #333333;
    color: #ffffff;
}

.btn-secondary {
    background: #e6e6e6;
    color: #222222;
}


/* =========================================================
   ALERTS
   ========================================================= */
.alert {
    max-width: 700px;
    margin: 0 auto 30px auto;
    padding: 16px 20px;
    border: 1px solid #cccccc;
    text-align: left;
}

.alert-success {
    background: #eef8ee;
    border-color: #9ec79e;
}

.alert-error {
    background: #fff1f1;
    border-color: #d6a4a4;
}


/* =========================================================
   KARTEN / GENERISCHE BOXEN
   ========================================================= */
.card {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.card-title {
    margin: 0 0 12px 0;
    font-size: 24px;
}

.project-card {
    text-align: left;
}

.section-box {
    text-align: left;
}


/* =========================================================
   TABELLEN
   ========================================================= */
.table-wrap {
    width: 100%;
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.table th,
.table td {
    border: 1px solid #cccccc;
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

.table th {
    background: #f3f3f3;
    font-weight: bold;
}


/* =========================================================
   PROJEKT-/ANGEBOTS-LAYOUT
   ========================================================= */
.project-top,
.artist-project-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.project-left {
    flex: 1 1 60%;
}

.project-right,
.artist-project-right {
    flex: 1 1 40%;
    text-align: right;
    min-width: 220px;
}

.project-heading {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.project-text {
    font-size: 18px;
    line-height: 1.6;
    white-space: pre-line;
    text-align: left;
}

.status-label {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.delivery-date {
    margin-top: 20px;
    font-size: 18px;
}


/* =========================================================
   MINI-PROGRESSBAR
   ========================================================= */
.mini-progressbar {
    width: 180px;
    height: 12px;
    background: #dddddd;
    margin-left: auto;
    overflow: hidden;
    border-radius: 20px;
}

.mini-progressbar-fill {
    height: 100%;
    background: #333333;
}

.mini-progress-text {
    margin-top: 6px;
    font-size: 14px;
    color: #666666;
}


/* =========================================================
   OFFER / DETAILS-BLÖCKE
   ========================================================= */
.offer-details {
    margin-top: 20px;
    border-top: 1px solid #dddddd;
    padding-top: 15px;
}

.offer-summary {
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    list-style: none;
}

.offer-summary::-webkit-details-marker {
    display: none;
}

.offer-summary::before {
    content: "▸ ";
}

.offer-details[open] .offer-summary::before {
    content: "▾ ";
}

.offer-panel {
    margin-top: 15px;
    padding: 20px;
    background: #f7f7f7;
    border: 1px solid #dddddd;
}

.offer-panel-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.offer-progress-wrap {
    min-width: 180px;
    text-align: right;
}

.offer-panel-compact {
    padding: 16px 18px;
}

.offer-compact-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 14px;
}

.offer-compact-meta {
    display: grid;
    gap: 8px;
    font-size: 16px;
    line-height: 1.4;
}

.offer-compact-action {
    flex: 0 0 auto;
    text-align: right;
}

.offer-compact-action .btn {
    padding: 10px 20px;
    font-size: 16px;
}

.offer-compact-sow {
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
    color: #333333;
}

.offer-badge-success {
    display: inline-block;
    padding: 10px 14px;
    background: #eef8ee;
    border: 1px solid #9ec79e;
    font-size: 14px;
    font-weight: bold;
}


/* =========================================================
   CUSTOMER DASHBOARD
   ========================================================= */
.customer-dashboard-shell {
    text-align: left;
}

.customer-dashboard-intro {
    margin-bottom: 34px;
    padding: 28px 30px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
    border: 1px solid #d8d8d8;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.customer-dashboard-intro .page-title {
    margin-bottom: 12px;
}

.customer-dashboard-lead {
    font-size: 22px;
    margin: 0;
}

.customer-dashboard-zone {
    padding: 28px 30px;
    text-align: left;
}

.customer-secondary-zone {
    background: #f5f5f5;
    border: 1px solid #d8d8d8;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.customer-zone-kicker {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: #e3e3e3;
    color: #333333;
}

.customer-zone-subtitle {
    margin: 0 0 20px 0;
    color: #5f5f5f;
    font-size: 16px;
}

.customer-section-divider {
    margin: 42px 0;
    padding: 18px 24px;
    border-top: 3px solid #d6c1a0;
    border-bottom: 1px solid #dedede;
    background: linear-gradient(180deg, #f8f5ef 0%, #efefef 100%);
    text-align: left;
}

.customer-section-divider-title {
    margin: 0 0 6px 0;
    font-size: 28px;
}

.customer-section-divider-text {
    margin: 0;
    color: #666666;
    font-size: 15px;
}

.customer-info-box {
    margin: 14px 0 18px 0;
    padding: 14px;
    background: #f6f6f6;
    border: 1px solid #dddddd;
}

.customer-part-badge {
    display: inline-block;
    padding: 7px 12px;
    background: #f2ece1;
    border: 1px solid #d7c6ab;
    font-size: 14px;
    font-weight: bold;
}

.customer-muted-note {
    color: #666666;
    font-size: 14px;
}


/* =========================================================
   ARTIST DASHBOARD
   ========================================================= */
.artist-dashboard-shell {
    text-align: left;
}

.artist-dashboard-intro {
    margin-bottom: 34px;
    padding: 28px 30px;
    background: linear-gradient(135deg, #f7f1e7 0%, #efe5d5 100%);
    border: 1px solid #d7c6ab;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.artist-dashboard-intro .page-title {
    margin-bottom: 12px;
}

.artist-dashboard-lead {
    font-size: 22px;
    margin: 0;
}

.artist-dashboard-zone {
    padding: 28px 30px;
    text-align: left;
}

.artist-primary-zone {
    background: #fffaf2;
    border: 1px solid #d8c3a3;
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

.artist-secondary-zone {
    background: #f5f5f5;
    border: 1px solid #d8d8d8;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.artist-zone-kicker {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.artist-primary-zone .artist-zone-kicker {
    background: #2f2a24;
    color: #ffffff;
}

.artist-secondary-zone .artist-zone-kicker {
    background: #e3e3e3;
    color: #333333;
}

.artist-zone-subtitle {
    margin: 0 0 20px 0;
    color: #5f5f5f;
    font-size: 16px;
}

.artist-section-divider {
    margin: 42px 0;
    padding: 18px 24px;
    border-top: 3px solid #d6c1a0;
    border-bottom: 1px solid #dedede;
    background: linear-gradient(180deg, #f8f5ef 0%, #efefef 100%);
    text-align: left;
}

.artist-section-divider-title {
    margin: 0 0 6px 0;
    font-size: 28px;
}

.artist-section-divider-text {
    margin: 0;
    color: #666666;
    font-size: 15px;
}


/* =========================================================
   KOMPAKTLISTEN / DASHBOARD-CARDS
   ========================================================= */
.compact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
}

.compact-card {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border: 1px solid #d9d9d9;
    background: #ffffff;
    text-align: left;
}

.compact-main {
    flex: 1 1 auto;
    min-width: 0;
}

.compact-side {
    flex: 0 0 220px;
    text-align: right;
}

.compact-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.compact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 14px;
    margin-bottom: 10px;
}

.compact-meta-vertical,
.compact-meta-block {
    display: grid;
    gap: 6px;
}

.compact-meta-block {
    margin: 10px 0 0 0;
}

.compact-note {
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
}

.compact-text {
    font-size: 15px;
    line-height: 1.5;
}

.compact-progress-row {
    margin-top: 10px;
}

.compact-progressbar {
    width: 150px;
}

.compact-panel {
    padding: 14px 16px;
}

.compact-action-form {
    margin: 0;
}

.compact-badge {
    display: inline-block;
    padding: 8px 12px;
    background: #f1f1f1;
    border: 1px solid #d0d0d0;
    font-size: 14px;
    font-weight: bold;
}


/* =========================================================
   PARTS / TEILPROJEKTE / FORTSCHRITTSBILDER
   ========================================================= */
.parts-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 18px 0 20px 0;
}

.parts-badge {
    display: inline-block;
    padding: 7px 12px;
    background: #f2ece1;
    border: 1px solid #d7c6ab;
    font-size: 14px;
    font-weight: bold;
}

.parts-list,
.part-customer-list {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.part-card {
    border: 1px solid #d8c3a3;
    background: #ffffff;
    padding: 18px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

.part-customer-card {
    border: 1px solid #d9d9d9;
    background: #fafafa;
    padding: 16px;
}

.part-card-head,
.part-customer-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.part-card-title,
.part-customer-title {
    margin: 0;
    font-size: 22px;
}

.part-card-meta,
.part-customer-meta {
    display: grid;
    gap: 6px;
    font-size: 15px;
}

.part-card-sow,
.part-customer-sow {
    line-height: 1.5;
    margin: 12px 0 14px 0;
}

.part-actions,
.part-customer-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.part-upload-form,
.part-inline-form {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.part-images,
.part-customer-images {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 14px 0 18px 0;
}

.part-image-link,
.part-customer-image-link {
    display: block;
    text-decoration: none;
}

.part-image-thumb {
    width: 120px;
    height: 120px;
    object-fit: cover;
    display: block;
    border: 1px solid #d8c3a3;
    background: #f7f7f7;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: transform 0.15s ease;
}

.part-customer-image-thumb {
    width: 120px;
    height: 120px;
    object-fit: cover;
    display: block;
    border: 1px solid #d0d0d0;
    background: #f7f7f7;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: transform 0.15s ease;
}

.part-image-link:hover .part-image-thumb,
.part-customer-image-link:hover .part-customer-image-thumb {
    transform: scale(1.03);
}

.muted-note {
    color: #666666;
    font-size: 14px;
}


/* =========================================================
   SPLIT-DIALOG / TEILPROJEKT-ANLAGE
   ========================================================= */
.split-dialog {
    max-width: 980px;
    width: calc(100% - 32px);
    border: 1px solid #c8b393;
    padding: 0;
}

.split-dialog-form {
    padding: 24px;
}

.split-grid {
    display: grid;
    gap: 16px;
}

.split-top-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: end;
    margin-bottom: 18px;
}

.split-part-block {
    border: 1px solid #d9c6a7;
    background: #fcf8f1;
    padding: 16px;
}

.split-part-title {
    margin: 0 0 12px 0;
    font-size: 20px;
}

.form-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.dialog-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 22px;
    flex-wrap: wrap;
}

.dialog-info-box {
    margin: 14px 0 18px 0;
    padding: 14px;
    background: #f6f6f6;
    border: 1px solid #dddddd;
}


/* =========================================================
   ZAHLUNGS-/BESTÄTIGUNGSDIALOGE
   ========================================================= */
.payment-dialog {
    border: none;
    padding: 0;
    max-width: 520px;
    width: calc(100% - 40px);
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0,0,0,0.25);
}

.payment-dialog::backdrop {
    background: rgba(0,0,0,0.45);
}

.payment-dialog-form {
    padding: 30px;
}

.payment-dialog-text {
    font-size: 20px;
    line-height: 1.5;
    margin: 0 0 25px 0;
    text-align: left;
}

.payment-dialog-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.payment-confirmed {
    margin-top: 25px;
    padding: 12px 16px;
    background: #e8f7e8;
    border: 1px solid #7ac27a;
    color: #2e7d32;
    font-weight: bold;
    text-align: center;
}

.customer-pay-action {
    margin-top: 20px;
}


/* =========================================================
   FORTSCHRITTSGALERIEN / SLOTS
   ========================================================= */
.progress-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.progress-gallery-item {
    border: 1px solid #dddddd;
    background: #ffffff;
    padding: 12px;
}

.progress-gallery-date {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #555555;
}

.progress-gallery-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.progress-slots {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 10px;
}

.progress-slot {
    border: 1px solid #dddddd;
    background: #ffffff;
    padding: 12px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.progress-slot-header {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333333;
}

.progress-slot-date {
    font-size: 13px;
    color: #666666;
    margin-bottom: 10px;
}

.progress-slot-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border: 1px solid #e3e3e3;
}

.progress-slot-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.progress-slot-btn {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
}

.progress-slot-empty,
.progress-slot-locked {
    margin-top: auto;
    font-size: 14px;
    color: #777777;
    text-align: center;
    padding: 20px 10px;
    border: 1px dashed #cccccc;
    background: #f8f8f8;
}


/* =========================================================
   WORKFLOW-DARSTELLUNG
   ========================================================= */
.workflow-container {
    text-align: center;
    margin: 80px 0;
}

.workflow-title {
    font-size: 36px;
    margin-bottom: 40px;
}

.workflow-svg {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

.workflow-description {
    margin-top: 30px;
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.wf-line {
    stroke: #ccc;
    stroke-width: 4;
}

.wf-circle {
    fill: #ffffff;
    stroke: #333333;
    stroke-width: 4;
}

.wf-number {
    font-size: 22px;
    font-weight: bold;
    fill: #333;
}

.wf-text {
    font-size: 16px;
    fill: #333;
}

/* =========================================================
   ADMIN ISSUES / KANBAN BOARD
   ========================================================= */
.admin-kanban-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
    align-items: stretch;
}

.admin-kanban-column {
    background: #efefef;
    border: 1px solid #d4d4d4;
    padding: 14px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.admin-kanban-column-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.admin-kanban-column-title {
    margin: 0;
    font-size: 22px;
}

.admin-kanban-column-count {
    display: inline-block;
    min-width: 32px;
    padding: 6px 10px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #cccccc;
    font-weight: bold;
}

.admin-kanban-dropzone {
    flex: 1 1 auto;
    display: grid;
    gap: 14px;
    padding: 6px;
    border: 2px dashed transparent;
    transition: background 0.15s ease, border-color 0.15s ease;
    align-content: start;
    min-height: 100%;
}

.admin-kanban-dropzone.is-over {
    background: rgba(255,255,255,0.55);
    border-color: #999999;
}

.admin-issue-card {
    background: #ffffff;
    border: 1px solid #d0d0d0;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
    padding: 14px;
    cursor: grab;
}

.admin-issue-card.is-dragging {
    opacity: 0.55;
}

.admin-issue-card-head {
    margin-bottom: 10px;
}

.admin-issue-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
}

.admin-issue-description {
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 14px;
    white-space: pre-line;
}

.admin-issue-meta {
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: #666666;
    margin-bottom: 14px;
}

.admin-issue-actions {
    display: flex;
    justify-content: flex-end;
}

.admin-issue-btn {
    padding: 10px 16px;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .admin-kanban-board {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   LEERZUSTÄNDE / HILFSKLASSEN
   ========================================================= */
.dashboard-empty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.dashboard-empty-action {
    flex-shrink: 0;
}

.hidden {
    display: none;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.responsive-image {
    width: 100%;
    max-width: 400px;
    height: auto;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
    .progress-slots {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .title {
        left: 20px;
        font-size: 42px;
    }

    .hamburger {
        right: 20px;
        font-size: 48px;
    }

    .menu {
        right: 20px;
        min-width: 260px;
    }

    .menu a {
        font-size: 22px;
    }

    .content-frame {
        width: 92%;
        padding: 30px 20px;
    }

    .page-title {
        font-size: 36px;
    }

    .artist-dashboard-intro,
    .artist-dashboard-zone,
    .artist-section-divider,
    .customer-dashboard-intro,
    .customer-dashboard-zone,
    .customer-section-divider {
        padding: 20px;
    }

    .artist-dashboard-lead,
    .customer-dashboard-lead {
        font-size: 18px;
    }

    .artist-section-divider-title,
    .customer-section-divider-title {
        font-size: 22px;
    }

    .project-top,
    .artist-project-top,
    .offer-panel-top,
    .offer-compact-top,
    .compact-card {
        flex-direction: column;
    }

    .project-right,
    .artist-project-right,
    .offer-progress-wrap,
    .offer-compact-action,
    .compact-side {
        text-align: left;
        min-width: auto;
        flex: 1 1 auto;
    }

    .mini-progressbar {
        margin-left: 0;
    }

    .form-grid-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .progress-slots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .progress-slots {
        grid-template-columns: 1fr;
    }
}
