* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    width: 100%;
    min-height: 100%;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    color: #eeeeee;

    font-family: Arial, Helvetica, sans-serif;

    background:
        radial-gradient(
            ellipse at 50% 35%,
            rgba(118, 5, 20, 0.16) 0%,
            rgba(40, 0, 5, 0.06) 25%,
            transparent 55%
        ),
        radial-gradient(
            ellipse at 50% 105%,
            rgba(120, 0, 18, 0.12),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            #090a0b 0%,
            #070708 45%,
            #050506 100%
        );
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;

    opacity: 0.16;

    background-image:
        repeating-radial-gradient(
            circle at 20% 30%,
            rgba(255,255,255,0.025) 0px,
            transparent 1px,
            transparent 4px
        );
}


/* TOPBAR */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: 82px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    padding: 0 48px;

    background:
        linear-gradient(
            180deg,
            rgba(9,10,11,0.97),
            rgba(9,10,11,0.82)
        );

    border-bottom: 1px solid rgba(255,255,255,0.055);

    backdrop-filter: blur(18px);

    z-index: 100;
}

.topbar::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -1px;

    width: 330px;
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(150,7,27,0.55),
            #b10c29,
            rgba(150,7,27,0.55),
            transparent
        );

    box-shadow: 0 0 13px rgba(180,6,35,0.28);
}


/* BRAND */

.brand {
    justify-self: start;

    display: flex;
    align-items: center;

    gap: 9px;

    color: #aaaaaa;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 4px;
}

.brand-q {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    color: #d0d0d0;

    border: 1px solid rgba(160,20,38,0.4);

    background:
        linear-gradient(
            145deg,
            #18191b,
            #0b0c0d
        );

    box-shadow:
        inset 0 0 10px rgba(255,255,255,0.03),
        0 0 15px rgba(135,0,20,0.08);

    font-size: 15px;
    letter-spacing: 0;
}


/* MENU */

.menu {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 48px;
}

.menu-item {
    position: relative;

    height: 100%;

    padding: 0 2px;

    border: 0;
    outline: none;

    background: transparent;

    color: #55585c;

    cursor: pointer;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    transition: color 0.25s ease;
}

.menu-item:hover {
    color: #aaaaaa;
}

.menu-item.active {
    color: #ededed;
}

.menu-item.active::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 38px;
    height: 1px;

    transform: translateX(-50%);

    background: #b20d29;

    box-shadow:
        0 0 9px #b20d29,
        0 0 18px rgba(180,0,30,0.45);
}


/* STATUS */

.status {
    justify-self: end;

    color: #55585b;

    font-size: 8px;

    letter-spacing: 2px;
}

.status span {
    display: inline-block;

    width: 5px;
    height: 5px;

    margin-right: 7px;

    border-radius: 50%;

    background: #8f1325;

    box-shadow: 0 0 7px rgba(175,20,45,0.8);
}


/* PAGES */

main {
    min-height: 100vh;
}

.page {
    display: none;

    min-height: 100vh;

    padding: 145px 25px 100px;
}

.page.active {
    display: block;
}


/* HERO */

.hero {
    max-width: 770px;

    margin: 0 auto;

    text-align: center;
}

.kicker {
    margin-bottom: 13px;

    color: #921127;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.hero h1,
.section-head h1 {
    margin: 0;

    color: #e9e9ea;

    font-size: 39px;
    font-weight: 700;

    letter-spacing: -0.8px;
}

.subtitle,
.section-head p {
    margin: 12px 0 0;

    color: #484a4e;

    font-size: 11px;
}


/* UPLOAD BOX */

.dropzone {
    position: relative;

    width: 430px;
    height: 270px;

    margin: 55px auto 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 10px;

    background:
        radial-gradient(
            circle at center,
            rgba(125,0,20,0.045),
            transparent 65%
        ),
        rgba(255,255,255,0.008);

    transition: 0.25s ease;
}

.dropzone:hover,
.dropzone.drag-active {
    border-color: rgba(167,14,40,0.4);

    background:
        radial-gradient(
            circle at center,
            rgba(145,0,22,0.09),
            transparent 68%
        ),
        rgba(255,255,255,0.012);
}

.dropzone::before {
    content: "";

    position: absolute;

    top: -1px;
    left: -1px;

    width: 18px;
    height: 18px;

    border-top: 1px solid #a70e28;
    border-left: 1px solid #a70e28;
}

.dropzone::after {
    content: "";

    position: absolute;

    right: -1px;
    bottom: -1px;

    width: 18px;
    height: 18px;

    border-right: 1px solid #a70e28;
    border-bottom: 1px solid #a70e28;
}

.upload-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border: 1px solid rgba(170,15,40,0.4);

    border-radius: 9px;

    background:
        linear-gradient(
            145deg,
            #18191a,
            #0b0c0d
        );
}

.upload-icon svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: #af132d;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dropzone strong {
    color: #b9b9bb;

    font-size: 11px;
}

.browse {
    margin-top: 7px;

    color: #861125;

    font-size: 9px;
}

.max-size {
    position: absolute;

    bottom: 23px;

    color: #34363a;

    font-size: 7px;

    letter-spacing: 1.4px;
}


/* SELECTED FILE */

.file-selected {
    display: none;

    width: 430px;

    margin: 13px auto 0;

    padding: 13px 14px;

    align-items: center;
    justify-content: space-between;

    border: 1px solid rgba(255,255,255,0.05);

    border-radius: 6px;

    background: rgba(255,255,255,0.009);

    text-align: left;
}

.file-selected.visible {
    display: flex;
}

.file-name {
    max-width: 270px;

    overflow: hidden;

    color: #9d9d9f;

    font-size: 10px;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-size {
    margin-top: 4px;

    color: #404246;

    font-size: 8px;
}

#startUpload {
    height: 35px;

    padding: 0 15px;

    border: 1px solid rgba(145,15,37,0.28);

    border-radius: 4px;

    background: rgba(130,0,20,0.07);

    color: #8c2635;

    cursor: pointer;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.3px;
}


/* PROGRESS */

.progress-area {
    display: none;

    width: 430px;

    margin: 12px auto 0;

    padding: 15px;

    border: 1px solid rgba(255,255,255,0.045);

    border-radius: 6px;

    background: rgba(255,255,255,0.007);

    text-align: left;
}

.progress-area.visible {
    display: block;
}

.progress-head {
    display: flex;

    align-items: center;
    justify-content: space-between;

    color: #54565a;

    font-size: 8px;

    letter-spacing: 1px;
}

.progress-head strong {
    color: #a2142b;

    font-size: 10px;
}

.progress-line {
    height: 2px;

    margin: 13px 0;

    overflow: hidden;

    background: #17181a;
}

#progressBar {
    width: 0%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #5f0715,
            #b2102c
        );

    box-shadow: 0 0 8px rgba(180,10,40,0.5);
}

.progress-info {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;
}

.progress-info small {
    display: block;

    color: #333539;

    font-size: 6px;

    letter-spacing: 1px;
}

.progress-info span {
    display: block;

    margin-top: 5px;

    color: #686a6d;

    font-size: 8px;
}


/* LIST / LINKS */

.section-head {
    max-width: 900px;

    margin: 0 auto 42px;

    text-align: center;
}

.content-panel {
    max-width: 900px;
    min-height: 320px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.05);

    border-radius: 9px;

    background: rgba(255,255,255,0.008);
}

.empty-state {
    color: #34363a;

    font-size: 8px;

    letter-spacing: 2px;
}


/* FOOTER */

footer {
    position: fixed;

    bottom: 23px;
    left: 30px;
    right: 30px;

    display: flex;
    justify-content: center;

    gap: 13px;

    pointer-events: none;

    color: #292b2f;

    font-size: 6px;

    letter-spacing: 1.6px;
}

.footer-dot {
    color: #5f0a19;
}


/* MOBILE */

@media (max-width: 700px) {

    .topbar {
        height: 70px;

        grid-template-columns: auto 1fr;

        padding: 0 15px;
    }

    .brand {
        font-size: 9px;

        letter-spacing: 2px;
    }

    .brand-q {
        width: 27px;
        height: 27px;
    }

    .menu {
        justify-self: end;

        gap: 17px;
    }

    .menu-item {
        font-size: 7px;

        letter-spacing: 1.4px;
    }

    .status {
        display: none;
    }

    .page {
        padding: 120px 15px 90px;
    }

    .hero h1,
    .section-head h1 {
        font-size: 27px;
    }

    .dropzone,
    .file-selected,
    .progress-area {
        width: 100%;
        max-width: 430px;
    }

    .dropzone {
        height: 250px;

        margin-top: 42px;
    }
}

/* ===== BIG UPLOAD AREA ===== */

.dropzone {
    width: 760px;
    height: 440px;
    max-width: 100%;
    margin-top: 48px;
}

.upload-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 27px;
    border-radius: 12px;
}

.upload-icon svg {
    width: 31px;
    height: 31px;
}

.dropzone strong {
    font-size: 15px;
}

.browse {
    margin-top: 10px;
    font-size: 11px;
}

.max-size {
    bottom: 30px;
    font-size: 8px;
}

.file-selected,
.progress-area {
    width: 760px;
    max-width: 100%;
}

@media (max-width: 800px) {
    .dropzone {
        width: 100%;
        height: 360px;
    }

    .file-selected,
    .progress-area {
        width: 100%;
    }
}


/* ===== EXTRA LARGE ROUNDED DROPZONE ===== */

.dropzone {
    width: 980px;
    height: 560px;
    max-width: 94vw;

    border-radius: 34px;

    margin-top: 46px;

    border: 1px solid rgba(255,255,255,0.07);

    background:
        radial-gradient(
            circle at center,
            rgba(120,0,18,0.07),
            transparent 68%
        ),
        rgba(255,255,255,0.01);

    box-shadow:
        inset 0 0 90px rgba(255,255,255,0.008),
        0 0 45px rgba(100,0,18,0.05);
}

.dropzone::before {
    border-top-left-radius: 34px;
}

.dropzone::after {
    border-bottom-right-radius: 34px;
}

.upload-icon {
    width: 92px;
    height: 92px;

    border-radius: 24px;

    margin-bottom: 32px;
}

.upload-icon svg {
    width: 37px;
    height: 37px;
}

.dropzone strong {
    font-size: 18px;
}

.browse {
    font-size: 12px;
    margin-top: 12px;
}

.max-size {
    bottom: 38px;
    font-size: 9px;
}

.file-selected,
.progress-area {
    width: 980px;
    max-width: 94vw;

    border-radius: 18px;
}

@media (max-width: 1000px) {

    .dropzone {
        width: 94vw;
        height: 500px;
    }

    .file-selected,
    .progress-area {
        width: 94vw;
    }
}

@media (max-width: 700px) {

    .dropzone {
        height: 390px;
        border-radius: 26px;
    }

    .upload-icon {
        width: 78px;
        height: 78px;
        border-radius: 20px;
    }

}

/* ===== UPLOAD RESULT ===== */

.upload-result {
    display: none;

    width: 980px;
    max-width: 94vw;

    margin: 14px auto 0;

    padding: 20px;

    text-align: left;

    border:
        1px solid
        rgba(255,255,255,0.055);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.009);
}

.upload-result.visible {
    display: block;
}

.result-label {
    margin-bottom: 9px;

    color: #4b4d50;

    font-size: 7px;

    letter-spacing: 2px;
}

.result-row {
    display: flex;

    width: 100%;
}

.result-row input {
    flex: 1;

    min-width: 0;

    height: 42px;

    padding: 0 14px;

    border:
        1px solid
        rgba(255,255,255,0.06);

    border-radius:
        8px 0 0 8px;

    outline: none;

    background: #08090a;

    color: #888b8f;

    font-size: 10px;
}

.result-row button {
    width: 90px;

    border:
        1px solid
        rgba(150,15,38,0.35);

    border-left: 0;

    border-radius:
        0 8px 8px 0;

    background:
        rgba(120,0,20,0.10);

    color: #a51a31;

    cursor: pointer;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.result-row button:hover {
    background:
        rgba(145,0,25,0.18);

    color: #d12743;
}

.result-file {
    margin-top: 10px;

    color: #3e4044;

    font-size: 8px;
}

#startUpload:disabled {
    opacity: 0.55;
    cursor: default;
}

@media(max-width: 700px) {

    .upload-result {
        width: 94vw;
    }

    .result-row input {
        font-size: 8px;
    }

}

/* ===== HUGE CENTERED DROPZONE ===== */

#upload {
    width: 100%;
}

#upload .hero {
    width: 100%;
    max-width: none;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 0 auto;

    text-align: center;
}

.dropzone {
    width: 1200px;
    height: 620px;

    max-width: calc(100vw - 100px);

    margin-left: auto;
    margin-right: auto;
    margin-top: 45px;

    border-radius: 40px;
}

.file-selected,
.progress-area,
.upload-result {
    width: 1200px;

    max-width: calc(100vw - 100px);

    margin-left: auto;
    margin-right: auto;
}

.upload-icon {
    width: 105px;
    height: 105px;

    border-radius: 28px;
}

.upload-icon svg {
    width: 42px;
    height: 42px;
}

.dropzone strong {
    font-size: 20px;
}

.browse {
    font-size: 13px;
}

.max-size {
    font-size: 9px;
    bottom: 42px;
}

@media (max-width: 900px) {

    .dropzone {
        width: calc(100vw - 30px);
        max-width: none;

        height: 480px;

        border-radius: 30px;
    }

    .file-selected,
    .progress-area,
    .upload-result {
        width: calc(100vw - 30px);
        max-width: none;
    }

}



/* ============================================================
   MEDIA ART SELECTOR IN DROPZONE
   ============================================================ */

.media-types {
    width: calc(100% - 34px);

    margin-top: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    flex-wrap: wrap;
}

.media-type {
    position: relative;

    display: inline-flex;

    cursor: pointer;
}

.media-type input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.media-type span {
    min-width: 66px;
    height: 27px;

    padding: 0 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,0.07);

    border-radius: 4px;

    background:
        rgba(255,255,255,0.012);

    color: #66696d;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.2px;

    transition:
        border-color .2s ease,
        color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.media-type:hover span {
    color: #aaa;

    border-color:
        rgba(255,255,255,0.13);
}

.media-type input:checked + span {
    color: #f0f0f0;

    border-color:
        rgba(178,13,41,0.72);

    background:
        rgba(120,0,20,0.11);

    box-shadow:
        0 0 8px rgba(178,13,41,0.20),
        inset 0 0 8px rgba(178,13,41,0.05);
}


/* ============================================================
   LIST PAGE
   ============================================================ */

.media-list-panel {
    width: min(1180px, 100%);

    margin:
        45px auto 0;

    padding:
        0;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,0.055);

    border-radius: 10px;

    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(125,0,20,0.055),
            transparent 42%
        ),
        rgba(255,255,255,0.008);
}

.media-list-table {
    width: 100%;
}

.media-list-head,
.media-list-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        230px
        165px;

    align-items: center;

    text-align: left;
}

.media-list-head {
    min-height: 48px;

    padding:
        0 24px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.06);

    color: #5d6064;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}

.media-list-row {
    min-height: 62px;

    padding:
        0 24px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.038);

    transition:
        background .2s ease;
}

.media-list-row:last-child {
    border-bottom: 0;
}

.media-list-row:hover {
    background:
        rgba(255,255,255,0.012);
}

.media-list-name {
    min-width: 0;

    padding-right: 25px;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    color: #c8c9ca;

    font-size: 11px;
}

.media-list-type {
    color: #777a7e;

    font-size: 9px;

    letter-spacing: .7px;
}

.media-list-download {
    display: flex;

    justify-content: flex-end;
}

.media-download-button {
    min-width: 105px;
    height: 31px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    border:
        1px solid
        rgba(164,13,38,0.32);

    border-radius: 4px;

    background:
        linear-gradient(
            180deg,
            rgba(123,7,28,0.14),
            rgba(45,3,11,0.10)
        );

    color: #a9abad;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.7px;

    transition:
        color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.media-download-button:hover {
    color: #f0f0f0;

    border-color:
        rgba(178,13,41,0.72);

    background:
        rgba(125,0,22,0.16);

    box-shadow:
        0 0 13px
        rgba(178,13,41,0.14);
}

.media-list-empty {
    padding:
        65px 25px;

    text-align: center;

    color: #45474b;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .media-types {
        gap: 5px;
    }

    .media-type span {
        min-width: 58px;

        padding: 0 6px;

        font-size: 6px;
    }

    .media-list-panel {
        overflow-x: auto;
    }

    .media-list-table {
        min-width: 620px;
    }

}

/* LIST BOX = SAME STYLE AS DRAG & DROP BOX */

.media-list-panel {
    width: min(1180px, 100%);
    margin: 55px auto 0;

    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;

    background:
        radial-gradient(
            circle at center,
            rgba(125,0,20,0.045),
            transparent 65%
        ),
        rgba(255,255,255,0.008);

    transition: 0.25s ease;

    overflow: hidden;
}

.media-list-panel:hover {
    border-color: rgba(167,14,40,0.4);

    background:
        radial-gradient(
            circle at center,
            rgba(145,0,22,0.09),
            transparent 68%
        ),
        rgba(255,255,255,0.012);
}

/* LIST BOX = EXAKT DIE GRÖSSE DER DRAG & DROP BOX */

.media-list-panel {
    width: 430px !important;
    min-height: 270px;
    margin: 55px auto 0;
}


.media-list-head,
.media-list-row {
    grid-template-columns:
        minmax(0, 1fr)
        105px
        105px
        105px;
}

.media-list-uploader {
    color: #9a9ca0;
    font-size: 9px;
    letter-spacing: .7px;
}


/* LIST = GLEICHE AUSSENBREITE WIE UPLOAD CONTEXT */

.media-list-panel {
    width: 770px !important;
    max-width: 100% !important;
    min-height: 270px;
    margin: 55px auto 0;
}

/* 4 SPALTEN SAUBER AUF 770PX */

.media-list-head,
.media-list-row {
    grid-template-columns:
        minmax(0, 1fr)
        145px
        130px
        125px;
}


/* LIST CONTEXT = GLEICHE GRÖSSE WIE UPLOAD CONTEXT */

.media-list-panel {
    width: 1200px !important;
    max-width: calc(100vw - 50px) !important;
    min-height: 620px !important;

    margin: 55px auto 0 !important;
}

/* SPALTEN SAUBER AUF 1200PX VERTEILEN */

.media-list-head,
.media-list-row {
    grid-template-columns:
        minmax(0, 1fr)
        190px
        180px
        150px;
}


/* LIST INHALT OBEN STARTEN */

.media-list-panel {
    display: block !important;
}

.media-list-table {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.media-list-head {
    margin-top: 0 !important;
}

#mediaListRows {
    margin: 0 !important;
    padding: 0 !important;
}

CS
cat >> /var/www/media/public/assets/css/style.css <<'CSS'

/* LIST INHALT OBEN STARTEN */

.media-list-panel {
    display: block !important;
}

.media-list-table {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.media-list-head {
    margin-top: 0 !important;
}

#mediaListRows {
    margin: 0 !important;
    padding: 0 !important;
}


/* LIST HEADER GRÖSSER + MITTIG ÜBER DER BOX */

#list .section-head {
    width: 1200px !important;
    max-width: calc(100vw - 50px) !important;
    margin: 0 auto !important;
    text-align: center !important;
}

#list .section-head .kicker {
    font-size: 12px !important;
    letter-spacing: 3px !important;
    margin-bottom: 16px !important;
}

#list .section-head h1 {
    font-size: 54px !important;
    line-height: 1.05 !important;
    letter-spacing: -1px !important;
}

#list .section-head p {
    margin-top: 16px !important;
    font-size: 15px !important;
    letter-spacing: .4px !important;
}


/* UPLOAD + LIST + LINKS HEADER = GLEICHE GRÖSSE */

#upload .kicker,
#list .section-head .kicker,
#links .section-head .kicker {
    font-size: 12px !important;
    letter-spacing: 3px !important;
    margin-bottom: 16px !important;
}

#upload h1,
#list .section-head h1,
#links .section-head h1 {
    font-size: 54px !important;
    line-height: 1.05 !important;
    letter-spacing: -1px !important;
}

#upload .subtitle,
#list .section-head p,
#links .section-head p {
    margin-top: 16px !important;
    font-size: 15px !important;
    letter-spacing: .4px !important;
}


/* =========================================================
   LIST - NAME | LAUFZEIT | ART | UPLOADER | DOWNLOAD
   ========================================================= */

.media-list-head,
.media-list-row {
    grid-template-columns:
        minmax(0, 1fr)
        135px
        165px
        170px
        145px !important;
}

/* LAUFZEIT ROT */

.media-list-runtime {
    color: #b90f2e !important;
    font-size: 10px !important;
    font-weight: 700;
    letter-spacing: .8px;
}

/* UPLOADER ROT */

.media-list-uploader {
    color: #b90f2e !important;
    font-weight: 700;
}

/* HEADER BLEIBT DEZENT */

.media-list-head > div {
    white-space: nowrap;
}

