/* Grund-Design für iPad 2 Querformat Kiosk
   Fokus:
   - große Touch-Flächen
   - helle Apple-Optik mit "Glas"/Frosted Effekten
   - weiche Schatten
   - sticky Header + sticky Footer
*/

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

html, body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at 20% 20%, #ffffff 0%, #eef1f7 60%, #dfe3ee 100%);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #111;
    overflow-x: hidden;
}

.kiosk-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 100vh;
    -webkit-user-select: none;
            user-select: none;
    position: relative;
    padding-top: 120px; /* Platz für Topnav */
    padding-bottom: 80px; /* Platz für Footer */
}

.topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255,255,255,0.55);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    -webkit-box-shadow: 0 16px 40px rgba(0,0,0,.08);
            box-shadow: 0 16px 40px rgba(0,0,0,.08);
    border-bottom: 1px solid rgba(255,255,255,.6);
}

.topnav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px 12px 24px;
}

.topnav-btn {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    min-width: 200px;
    min-height: 100px;
    margin: 6px;
    border-radius: 20px;
    background: rgba(255,255,255,0.7);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.8);
    -webkit-box-shadow: 0 8px 20px rgba(0,0,0,.07);
            box-shadow: 0 8px 20px rgba(0,0,0,.07);
    text-decoration: none;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    padding: 12px;
}

.topnav-btn.active {
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(0,122,255,0.6);
    -webkit-box-shadow: 0 12px 32px rgba(0,122,255,.2);
            box-shadow: 0 12px 32px rgba(0,122,255,.2);
}

.topnav-label {
    display: block;
    color: #111;
}

.topnav-impressum {
    position: relative;
    min-width: 60px;
    min-height: 60px;
    margin: 6px;
    border-radius: 20px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    -webkit-box-shadow: 0 8px 20px rgba(0,0,0,.4);
            box-shadow: 0 8px 20px rgba(0,0,0,.4);
}

.footer-notice {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 60px;
    background: rgba(255,255,255,0.8);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    -webkit-box-shadow: 0 -8px 24px rgba(0,0,0,.08);
            box-shadow: 0 -8px 24px rgba(0,0,0,.08);
    font-size: 16px;
    line-height: 1.4;
    padding: 12px 20px;
    text-align: center;
    font-weight: 500;
    color: #000;
    border-top: 1px solid rgba(255,255,255,.6);
    z-index: 999;
}

.content-area {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px;
    padding-bottom: 120px;
}

/* Highlight-/Angebotskarten */

.highlights-grid,
.offers-list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    grid-gap: 24px;
}

.offer-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: rgba(255,255,255,0.6);
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    border-radius: 24px;
    -webkit-box-shadow: 0 30px 80px rgba(0,0,0,.15);
            box-shadow: 0 30px 80px rgba(0,0,0,.15);
    border: 1px solid rgba(255,255,255,0.8);
    padding: 16px;
}

.offer-card-left {
    width: 110px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 110px;
            flex: 0 0 110px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.offer-card-imgwrap {
    width: 90px;
    height: 150px;
    border-radius: 16px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.05);
    -webkit-box-shadow: 0 12px 24px rgba(0,0,0,.15);
            box-shadow: 0 12px 24px rgba(0,0,0,.15);
    overflow: hidden;
}

.offer-card-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-placeholder,
.img-placeholder-big {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        #dcdcdc 0px,
        #dcdcdc 10px,
        #f5f5f5 10px,
        #f5f5f5 20px
    );
    color: #666;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 150px;
}

.offer-card-right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding-left: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.offer-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    max-height: 2.4em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.offer-card-price {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-top: 8px;
    margin-bottom: 12px;
}

.details-btn {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 20px;
    background: linear-gradient(to bottom right, #007aff, #00c6ff);
    color: #fff;
    text-align: center;
    -webkit-box-shadow: 0 12px 30px rgba(0,122,255,.4);
            box-shadow: 0 12px 30px rgba(0,122,255,.4);
}

/* Akkordeon */
.offer-details-accordion {
    background: rgba(255,255,255,0.75);
    -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.8);
    -webkit-box-shadow: 0 20px 50px rgba(0,0,0,.18);
            box-shadow: 0 20px 50px rgba(0,0,0,.18);
    margin-top: 12px;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .3s ease;
    transition: max-height .3s ease;
}

.offer-details-accordion.open {
    max-height: 1000px; /* SlideDown */
}

.offer-details-inner {
    padding: 20px;
    font-size: 20px;
    line-height: 1.4;
    color: #000;
}

.detail-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

.detail-imgwrap {
    width: 90px;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.05);
    -webkit-box-shadow: 0 12px 24px rgba(0,0,0,.15);
            box-shadow: 0 12px 24px rgba(0,0,0,.15);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}
.detail-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-maininfo {
    padding-left: 16px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
}
.detail-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}
.detail-valid {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}
.detail-price-month {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.detail-block {
    background: rgba(255,255,255,0.5);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 16px;
    margin-bottom: 16px;
}

.detail-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 20px;
    margin-bottom: 8px;
}
.detail-label {
    font-weight: 600;
    min-width: 220px;
    color: #111;
}
.detail-val {
    color: #000;
    font-weight: 500;
}

.detail-block-head {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.detail-extra {
    font-size: 20px;
    line-height: 1.4;
    color: #000;
}
.detail-extra p {
    margin-top: 0;
    margin-bottom: 12px;
}

.detail-printwrap {
    text-align: center;
}
.print-btn {
    display: inline-block;
    min-width: 260px;
    border-radius: 18px;
    background: linear-gradient(to bottom right, #34c759, #00d37f);
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    padding: 18px 24px;
    text-decoration: none;
    -webkit-box-shadow: 0 12px 30px rgba(52,199,89,.4);
            box-shadow: 0 12px 30px rgba(52,199,89,.4);
}

/* Filter-Bar */
.filter-bar {
    background: rgba(255,255,255,0.6);
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.8);
    -webkit-box-shadow: 0 20px 50px rgba(0,0,0,.15);
            box-shadow: 0 20px 50px rgba(0,0,0,.15);
    padding: 20px;
    margin-bottom: 24px;
    font-size: 20px;
}

.filter-form {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    grid-gap: 16px;
}

.filter-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.filter-row-submit {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.filter-label {
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.filter-input-text,
.filter-input-number,
.filter-select {
    font-size: 20px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 2px solid rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    background: #fff;
    color: #000;
    min-height: 56px;
}

.filter-submit-btn {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    border-radius: 18px;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 20px;
    min-height: 56px;
    background: linear-gradient(to bottom right, #007aff, #00c6ff);
    color: #fff;
    text-align: center;
    -webkit-box-shadow: 0 12px 30px rgba(0,122,255,.4);
            box-shadow: 0 12px 30px rgba(0,0,0,.4);
}

/* Impressum Karte */
.impressum-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.impressum-card {
    max-width: 700px;
    width: 100%;
    background: rgba(255,255,255,0.6);
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.8);
    -webkit-box-shadow: 0 30px 80px rgba(0,0,0,.15);
            box-shadow: 0 30px 80px rgba(0,0,0,.15);
    padding: 24px;
    font-size: 22px;
    line-height: 1.4;
    color: #000;
    text-align: center;
}

.impressum-text a {
    color: #007aff;
    font-weight: 600;
    text-decoration: none;
}

.impressum-backwrap {
    margin-top: 24px;
    text-align: center;
}

.back-btn {
    display: inline-block;
    min-width: 260px;
    border-radius: 18px;
    background: linear-gradient(to bottom right, #636366, #8e8e93);
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    padding: 18px 24px;
    text-decoration: none;
    -webkit-box-shadow: 0 12px 30px rgba(0,0,0,.4);
            box-shadow: 0 12px 30px rgba(0,0,0,.4);
}

/* ADMIN Styles */

.admin-body,
.admin-login-body,
.admin-edit-body {
    background: radial-gradient(circle at 20% 20%, #ffffff 0%, #eef1f7 60%, #dfe3ee 100%);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #111;
    margin: 0;
    padding: 0 0 60px;
}

.admin-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(255,255,255,0.75);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    -webkit-box-shadow: 0 16px 40px rgba(0,0,0,.08);
            box-shadow: 0 16px 40px rgba(0,0,0,.08);
    border-bottom: 1px solid rgba(255,255,255,.6);
    padding: 16px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: flex-start;
        -ms-flex-align: flex-start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.admin-title {
    font-size: 24px;
    font-weight: 600;
}
.admin-subtitle {
    font-size: 16px;
    color: #444;
}

.admin-head-right .admin-btn {
    margin-left: 8px;
}

.admin-btn {
    display: inline-block;
    background: linear-gradient(to bottom right, #007aff, #00c6ff);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 16px;
    text-decoration: none;
    padding: 12px 16px;
    -webkit-box-shadow: 0 12px 30px rgba(0,122,255,.4);
            box-shadow: 0 12px 30px rgba(0,122,255,.4);
}
.admin-btn.admin-logout {
    background: linear-gradient(to bottom right, #ff3b30, #ff453a);
    -webkit-box-shadow: 0 12px 30px rgba(255,59,48,.4);
            box-shadow: 0 12px 30px rgba(255,59,48,.4);
}
.admin-btn.big {
    font-size: 20px;
    padding: 16px 20px;
    min-width: 200px;
    text-align: center;
}

.admin-main {
    padding: 20px;
}

.admin-section {
    background: rgba(255,255,255,0.6);
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.8);
    -webkit-box-shadow: 0 30px 80px rgba(0,0,0,.15);
            box-shadow: 0 30px 80px rgba(0,0,0,.15);
    padding: 20px;
    margin-bottom: 24px;
}

.admin-section h2 {
    margin-top: 0;
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.admin-hinweis-red {
    color: #fff;
    background: linear-gradient(to bottom right, #ff3b30, #ff453a);
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    -webkit-box-shadow: 0 12px 30px rgba(255,59,48,.4);
            box-shadow: 0 12px 30px rgba(255,59,48,.4);
    text-align: center;
}

.admin-offer-list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 16px;
}

/* kompakter Admin-Listenstil mit Thumbnail */
.admin-offer-card {
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    -webkit-box-shadow: 0 12px 24px rgba(0,0,0,.15);
            box-shadow: 0 12px 24px rgba(0,0,0,.15);
}

.admin-offer-card.admin-offer-expired {
    background: rgba(255,0,0,0.07);
    border: 2px solid rgba(255,0,0,0.5);
}

/* neue kompakte Struktur */
.admin-offer-compact {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 12px 16px;
}

.admin-offer-thumb {
    flex: 0 0 60px;
    width: 60px;
    height: 100px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    margin-right: 12px;
}
.admin-offer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.admin-thumb-placeholder {
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #666;
    line-height: 100px;
    text-align: center;
    background: repeating-linear-gradient(
        45deg,#dcdcdc 0px,#dcdcdc 10px,#f5f5f5 10px,#f5f5f5 20px
    );
}

.admin-offer-mainline {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 16px;
}
.admin-offer-titleline {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
    margin-bottom: 4px;
}
.admin-offer-cat {
    font-size: 16px;
    font-weight: 500;
    color: #444;
    margin-left: 6px;
}
.admin-offer-metaline {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}
.admin-offer-valid {
    font-size: 14px;
    color: #333;
}
.admin-offer-price {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}
.admin-offer-provider {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.admin-offer-actionsline {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    margin-left: 12px;
}

.admin-act-btn {
    display: inline-block;
    text-decoration: none;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    -webkit-box-shadow: 0 8px 20px rgba(0,0,0,.4);
            box-shadow: 0 8px 20px rgba(0,0,0,.4);
}
.admin-act-btn.highlight-on {
    background: linear-gradient(to bottom right, #ffcc00, #ff9500);
    color: #000;
    -webkit-box-shadow: 0 12px 30px rgba(255,204,0,.4);
            box-shadow: 0 12px 30px rgba(255,204,0,.4);
}

/* Suche im Admin-Header */
.admin-search-form {
    margin-top: 8px;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
}
.admin-search-input {
    border-radius: 12px;
    border: 2px solid rgba(0,0,0,.15);
    padding: 8px 10px;
    font-size: 16px;
    min-width: 200px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,.05);
    background: #fff;
    color: #000;
}
.admin-search-btn {
    border: 0;
    border-radius: 12px;
    background: linear-gradient(to bottom right,#007aff,#00c6ff);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 12px;
    box-shadow: 0 8px 20px rgba(0,122,255,.4);
    cursor: pointer;
}

/* Login */
.admin-login-body {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.admin-login-card {
    width: 320px;
    max-width: 90%;
    background: rgba(255,255,255,0.8);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.8);
    -webkit-box-shadow: 0 30px 80px rgba(0,0,0,.15);
            box-shadow: 0 30px 80px rgba(0,0,0,.15);
    padding: 24px;
    text-align: center;
}

.admin-login-card h1 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.error-box {
    background: rgba(255,59,48,0.15);
    border: 2px solid rgba(255,59,48,0.7);
    color: #000;
    padding: 12px;
    border-radius: 16px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 16px;
    -webkit-box-shadow: 0 12px 30px rgba(255,59,48,.4);
            box-shadow: 0 12px 30px rgba(255,59,48,.4);
}

.login-row {
    text-align: left;
    margin-bottom: 16px;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}
.login-input {
    width: 100%;
    border-radius: 16px;
    border: 2px solid rgba(0,0,0,.15);
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 500;
    -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.05);
            box-shadow: inset 0 2px 4px rgba(0,0,0,.05);
}
.login-submit-btn {
    width: 100%;
    border: 0;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 20px;
    background: linear-gradient(to bottom right, #007aff, #00c6ff);
    color: #fff;
    text-align: center;
    -webkit-box-shadow: 0 12px 30px rgba(0,122,255,.4);
            box-shadow: 0 12px 30px rgba(0,122,255,.4);
}

/* Edit-Form */

.admin-edit-body {
    /* nutzt admin-body styles */
}

.edit-form {
    background: rgba(255,255,255,0.6);
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.8);
    -webkit-box-shadow: 0 30px 80px rgba(0,0,0,.15);
            box-shadow: 0 30px 80px rgba(0,0,0,.15);
    padding: 20px;
    max-width: 1000px;
}

.edit-row {
    margin-bottom: 16px;
    font-size: 18px;
    color: #000;
    font-weight: 600;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr;
}

.edit-row-submit {
    text-align: center;
}

.edit-label {
    margin-bottom: 6px;
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.edit-input,
.edit-input-file,
.edit-textarea,
.edit-checkbox,
.edit-form select {
    font-size: 18px;
    font-weight: 500;
    border-radius: 16px;
    border: 2px solid rgba(0,0,0,.15);
    padding: 14px 16px;
    -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.05);
            box-shadow: inset 0 2px 4px rgba(0,0,0,.05);
    background: #fff;
    color: #000;
}
.edit-input,
.edit-input-file,
.edit-textarea,
.edit-form select {
    width: 100%;
}
.edit-textarea {
    min-height: 120px;
}
.edit-checkbox {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}
.edit-current-image img {
    width: 90px;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.05);
    -webkit-box-shadow: 0 12px 24px rgba(0,0,0,.15);
            box-shadow: 0 12px 24px rgba(0,0,0,.15);
    margin-bottom: 8px;
}

/* Misc */
.empty-hinweis {
    font-size: 20px;
    font-weight: 600;
    color: #444;
    text-align: center;
}
