/* ============================================================
   Meldezettel (Vorschläge und Mängel) - External Stylesheet
   Light/Dark theme via CSS variables — html.dark = dark
   ============================================================ */

/* ── exakt dieselben Variablen wie Dark-Light-CSS.html ── */
:root {
  --card:               #ffffff;
  --ring:               #34a85a;
  --input:              #d4d4d4;
  --muted:              #ddd9c4;
  --accent:             #66d9ef;
  --border:             #d4d4d4;
  --radius:             0.5rem;
  --chart-1:            #34a85a;
  --chart-2:            #6495ed;
  --primary:            #34a85a;
  --secondary:          #6495ed;
  --background:         #f9f9fa;
  --foreground:         #000000;
  --muted-foreground:   #000000;
  --primary-foreground: #ffffff;
  --secondary-foreground: #ffffff;
  --card-foreground:    #000000;

  /* Zusatz-Variablen für Meldezettel-spezifische Elemente */
  --subtle-foreground:  #000000;
  --warning:            #d97706;
  --warning-accent:     #ca8a04;
  --danger:             #dc2626;

  --primary-tint-4:   rgba(52, 168, 90, 0.04);
  --primary-tint-5:   rgba(52, 168, 90, 0.05);
  --primary-tint-8:   rgba(52, 168, 90, 0.08);
  --primary-tint-10:  rgba(52, 168, 90, 0.10);
  --primary-tint-12:  rgba(52, 168, 90, 0.12);
  --primary-tint-15:  rgba(52, 168, 90, 0.15);
  --primary-tint-30:  rgba(52, 168, 90, 0.30);
  --primary-tint-40:  rgba(52, 168, 90, 0.40);
  --warning-tint-6:   rgba(202, 138,  4, 0.06);
  --warning-tint-20:  rgba(202, 138,  4, 0.20);
  --warning-tint-30:  rgba(202, 138,  4, 0.30);
  --danger-tint-10:   rgba(220,  38, 38, 0.10);
  --danger-tint-30:   rgba(220,  38, 38, 0.30);
  --danger-tint-90:   rgba(220,  38, 38, 0.90);
  --shadow-sm:        rgba(0, 0, 0, 0.10);
  --shadow-md:        rgba(0, 0, 0, 0.15);
  --shadow-lg:        rgba(0, 0, 0, 0.25);
  --photo-overlay:    rgba(249, 249, 250, 0.75);
  --modal-overlay:    rgba(0, 0, 0, 0.65);
  --modal-shadow:     rgba(0, 0, 0, 0.50);
}

html.dark {
  --card:               #2f3436;
  --border:             #444444;
  --input:              #444444;
  --chart-1:            #33cc33;
  --chart-2:            #87ceeb;
  --primary:            #33cc33;
  --secondary:          #87ceeb;
  --background:         #1a1d23;
  --foreground:         #ffffff;
  --muted-foreground:   #ffffff;
  --primary-foreground: #000000;
  --secondary-foreground: #000000;
  --card-foreground:    #ffffff;
  --ring:               #33cc33;

  /* Zusatz-Variablen für Meldezettel-spezifische Elemente */
  --subtle-foreground:  #ffffff;
  --warning:            #fbbf24;
  --warning-accent:     #f59e0b;
  --danger:             #f87171;

  --primary-tint-4:   rgba(51, 204, 51, 0.04);
  --primary-tint-5:   rgba(51, 204, 51, 0.05);
  --primary-tint-8:   rgba(51, 204, 51, 0.08);
  --primary-tint-10:  rgba(51, 204, 51, 0.10);
  --primary-tint-12:  rgba(51, 204, 51, 0.12);
  --primary-tint-15:  rgba(51, 204, 51, 0.15);
  --primary-tint-30:  rgba(51, 204, 51, 0.30);
  --primary-tint-40:  rgba(51, 204, 51, 0.40);
  --warning-tint-6:   rgba(245, 158, 11, 0.06);
  --warning-tint-20:  rgba(245, 158, 11, 0.20);
  --warning-tint-30:  rgba(245, 158, 11, 0.30);
  --danger-tint-10:   rgba(248, 113, 113, 0.10);
  --danger-tint-30:   rgba(248, 113, 113, 0.30);
  --danger-tint-90:   rgba(248, 113, 113, 0.90);
  --shadow-sm:        rgba(0, 0, 0, 0.20);
  --shadow-md:        rgba(0, 0, 0, 0.30);
  --shadow-lg:        rgba(0, 0, 0, 0.40);
  --photo-overlay:    rgba(26, 29, 35, 0.75);
  --modal-overlay:    rgba(0, 0, 0, 0.85);
  --modal-shadow:     rgba(0, 0, 0, 0.70);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: var(--background);
    min-height: 100vh;
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background 0.25s, color 0.25s;
}

/* ---- Lang-Change-Bar ---- */
.lang-change-bar {
    padding: 8px 16px;
    background-color: var(--card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.change-language-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--foreground);
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.change-language-btn:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.current-flag-wrap {
    display: flex;
    align-items: center;
}

.current-flag {
    width: 24px;
    height: auto;
    border-radius: 3px;
    display: block;
}

/* ---- Container ---- */
.container {
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    min-height: 100vh;
}

/* ---- Page Header ---- */
.header {
    border-bottom: 1px solid var(--border);
    background: var(--card);
    padding: 25px 15px;
    text-align: center;
    color: var(--card-foreground);
}

.header h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px var(--shadow-md);
    color: var(--foreground);
    font-weight: bold;
    line-height: 1.2;
}

.header p {
    font-size: 0.95em;
    opacity: 0.9;
    color: var(--foreground);
    line-height: 1.4;
}

/* ---- Form Content ---- */
.form-content {
    padding: 15px;
    background: var(--background);
}

/* ---- Consent Section ---- */
.consent-section {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 20px 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.consent-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
}

.consent-section h3 {
    color: var(--card-foreground);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.consent-text {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ---- Checkbox Container (Consent) ---- */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: var(--card);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px var(--shadow-sm);
    position: relative;
}

.checkbox-container:hover {
    border-color: var(--primary);
    background-color: var(--primary-tint-5);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px var(--shadow-md);
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkbox-container::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: var(--background);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container span {
    font-weight: 500;
    color: var(--card-foreground);
    font-size: 0.95em;
    line-height: 1.4;
    cursor: pointer;
    flex: 1;
}

.checkbox-container:has(input[type="checkbox"]:checked) {
    border-color: var(--primary);
    background: var(--primary-tint-10);
}

.checkbox-container:has(input[type="checkbox"]:checked)::before {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-container:has(input[type="checkbox"]:checked)::after {
    content: "✓";
    position: absolute;
    left: 19px;
    top: 19px;
    color: var(--primary-foreground);
    font-weight: bold;
    font-size: 14px;
}

.checkbox-container:active {
    transform: translateY(0);
}

.checkbox-container:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ---- Info Box ---- */
.info-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 15px 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
}

.info-box-title {
    font-size: 0.95em;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 6px;
}

.info-box p {
    color: var(--foreground);
    font-size: 0.88em;
    line-height: 1.5;
}

.info-box strong {
    color: var(--foreground);
}

/* ---- Form Section ---- */
.form-section {
    margin-bottom: 25px;
    padding: 20px 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--card);
}

.form-section h3 {
    color: var(--card-foreground);
    margin-bottom: 6px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    font-size: 1.1em;
}

.form-section--verantwortlicher {
    border-color: var(--warning-tint-30);
}

.form-section--verantwortlicher h3 {
    border-bottom-color: var(--border);
}

.verantwortlicher-hinweis {
    background: var(--warning-tint-6);
    border: 1px solid var(--warning-tint-20);
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 20px;
    margin-top: 8px;
}

.verantwortlicher-hinweis p {
    color: var(--muted-foreground);
    font-size: 0.87em;
    line-height: 1.5;
}

.beantwortung-label {
    font-weight: 600;
    color: var(--foreground);
    font-size: 0.95em;
    margin-bottom: 14px;
    padding: 10px 0 4px;
    border-top: 1px solid var(--border);
}

.section-hint {
    color: var(--subtle-foreground);
    font-size: 0.82em;
    margin-bottom: 16px;
    margin-top: 2px;
}

.optional-hint {
    color: var(--subtle-foreground);
    font-size: 0.8em;
    font-weight: 400;
}

/* ---- Check Options ---- */
.check-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--background);
    user-select: none;
}

.check-option:hover {
    border-color: var(--primary);
    background: var(--primary-tint-5);
}

.check-option:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-tint-8);
}

.check-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-height: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
    background: transparent;
    box-shadow: none;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

html.dark .check-option input[type="checkbox"] {
    color-scheme: dark;
}

.check-option span {
    color: var(--card-foreground);
    font-size: 0.95em;
    line-height: 1.4;
    flex: 1;
}

.check-option--warn:has(input:checked) {
    border-color: var(--warning-accent);
    background: var(--warning-tint-6);
}

.warn-inline {
    color: var(--warning-accent);
    font-size: 0.85em;
    font-style: italic;
    margin-left: 4px;
}

.sub-field {
    display: none;
    margin-left: 12px;
    margin-top: 4px;
    padding: 14px;
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
    background: var(--primary-tint-4);
}

.sub-field.visible {
    display: block;
}

/* ---- Form Row + Group ---- */
.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--muted-foreground);
    margin-bottom: 8px;
    font-size: 0.95em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    padding: 15px 12px;
    border: 2px solid var(--input);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--background);
    color: var(--foreground);
    min-height: 52px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
}

html.dark .form-group input[type="text"],
html.dark .form-group input[type="email"],
html.dark .form-group input[type="date"],
html.dark .form-group select,
html.dark .form-group textarea {
    color-scheme: dark;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="date"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px var(--primary-tint-15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--subtle-foreground);
}

/* ---- File Upload ---- */
.file-upload-area {
    display: block;
    border: 2px dashed var(--border);
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--background);
    position: relative;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
    border-color: var(--primary);
    background: var(--primary-tint-5);
}

.file-upload-area input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.file-upload-icon {
    font-size: 2em;
    margin-bottom: 4px;
}

.file-upload-text {
    color: var(--foreground);
    font-size: 0.95em;
    font-weight: 500;
}

.file-upload-hint {
    color: var(--subtle-foreground);
    font-size: 0.82em;
}

/* Foto-Zähler */
.photo-counter {
    color: var(--foreground);
    font-size: 0.85em;
    font-weight: 600;
    margin-top: 10px;
    min-height: 20px;
}

/* Foto-Vorschau Grid */
.photo-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--background);
    aspect-ratio: 1;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--danger-tint-90);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease;
}

.photo-remove:hover {
    background: var(--danger);
}

.photo-name {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--photo-overlay);
    color: var(--muted-foreground);
    font-size: 0.7em;
    padding: 3px 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---- Submit Button ---- */
.submit-btn {
    background: var(--secondary);
    color: var(--secondary-foreground);
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px var(--shadow-lg);
    width: 100%;
    min-height: 56px;
    margin-top: 20px;
}

.submit-btn:hover,
.submit-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-tint-40);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ---- Loading Spinner ---- */
.loading {
    display: none;
    text-align: center;
    padding: 30px 20px;
    background: var(--card);
    border-radius: 12px;
    margin-top: 20px;
    color: var(--muted-foreground);
}

.spinner {
    border: 4px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ---- Success / Error Messages ---- */
.success-message {
    font-size: 1em;
    display: none;
    background: var(--primary-tint-10);
    color: var(--foreground);
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid var(--primary-tint-30);
    text-align: center;
    margin-top: 20px;
}

.success-message h3 {
    font-size: 1.3em;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 600;
}

.success-message p {
    font-size: 1em;
    line-height: 1.4;
    margin: 0;
}

.error-message {
    font-size: 1em;
    display: none;
    background: var(--danger-tint-10);
    color: var(--danger);
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid var(--danger-tint-30);
    text-align: center;
    margin-top: 20px;
}

.error-message h3 {
    font-size: 1.3em;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 600;
}

.error-message p {
    font-size: 1em;
    line-height: 1.4;
    margin: 0;
}

/* ---- Pflichtfeld Hinweis ---- */
.required-hint {
    color: var(--danger);
    font-size: 0.85em;
    margin-bottom: 20px;
    display: block;
}

.required {
    color: var(--danger);
    margin-left: 3px;
}

/* ---- Responsive: Desktop ---- */
@media (min-width: 769px) {
    .form-content {
        padding: 30px;
        max-width: 800px;
        margin: 0 auto;
    }

    .form-row {
        flex-direction: row;
        gap: 30px;
    }

    .form-group {
        flex: 1;
    }

    .submit-btn {
        width: auto;
        min-width: 300px;
        margin: 20px auto;
        display: block;
    }

    .check-options {
        gap: 10px;
    }

    .photo-preview {
        grid-template-columns: repeat(6, 1fr);
    }

    .sub-field .form-row {
        flex-direction: row;
    }
}

/* ---- Responsive: Large screens ---- */
@media (min-width: 1024px) {
    .header {
        padding: 40px 30px;
    }

    .header h1 {
        font-size: 2.5em;
    }

    .form-content {
        padding: 40px;
    }

    .form-section {
        padding: 30px;
    }
}

/* ---- Signature Box ---- */
.signature-box {
    width: 100%;
    height: 90px;
    border: 2px dashed var(--border);
    border-radius: 8px;
    background: var(--background);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    touch-action: none;
}

.signature-box:not(.is-signed):hover {
    border-color: var(--primary);
    background: var(--primary-tint-4);
}

.signature-box:not(.is-signed)::before {
    content: "Tippen zum Unterschreiben";
    color: var(--subtle-foreground);
    font-size: 0.88em;
    pointer-events: none;
}

.signature-box.is-signed {
    background: #ffffff;
    border-style: solid;
    border-color: var(--primary);
}

.signature-box.is-signed::before { display: none; }

.signature-box.is-signed::after {
    content: "✓";
    position: absolute;
    top: 4px;
    right: 8px;
    color: var(--foreground);
    font-size: 0.8em;
    font-weight: bold;
    background: var(--primary-tint-12);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.signature-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ---- Signature Pad Modal ---- */
.sig-modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--modal-overlay);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.sig-modal-overlay.hidden { display: none !important; }

.sig-modal-box {
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 40px var(--modal-shadow);
    width: 100%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sig-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--background);
    color: var(--foreground);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    border-bottom: 1px solid var(--border);
}

.sig-modal-close {
    background: none;
    border: none;
    color: var(--muted-foreground);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    transition: color 0.2s;
}

.sig-modal-close:hover { color: var(--danger); }

.sig-canvas-wrapper {
    position: relative;
    background: #ffffff;
    margin: 16px;
    border-radius: 6px;
    border: 2px dashed var(--muted-foreground);
    cursor: crosshair;
    touch-action: none;
    overflow: hidden;
}

#sigCanvas {
    display: block;
    width: 100%;
    height: 220px;
    border-radius: 4px;
}

.sig-canvas-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--muted-foreground);
    font-size: 1rem;
    pointer-events: none;
    white-space: nowrap;
}

.sig-canvas-hint.hidden { display: none; }

.sig-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
}

.sig-clear-btn {
    padding: 9px 20px;
    background: transparent;
    border: 1px solid var(--danger);
    color: var(--danger);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.2s;
}

.sig-clear-btn:hover {
    background: var(--danger-tint-10);
}

.sig-confirm-btn {
    padding: 9px 24px;
    background: var(--secondary);
    border: none;
    color: var(--secondary-foreground);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: opacity 0.2s;
}

.sig-confirm-btn:hover { opacity: 0.88; }

/* ---- Responsive: Very small screens ---- */
@media (max-width: 480px) {
    .header {
        padding: 20px 10px;
    }

    .header h1 {
        font-size: 1.5em;
    }

    .header p {
        font-size: 0.85em;
    }

    .form-content {
        padding: 10px;
    }

    .form-section {
        padding: 15px 10px;
        margin-bottom: 20px;
    }

    .consent-section {
        padding: 15px 10px;
    }

    .info-box {
        padding: 16px 12px 12px;
    }

    .photo-preview {
        grid-template-columns: repeat(3, 1fr);
    }
}
