/*body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 1s ease;
}*/

#main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hidden {
    display: none;
}

.flex {
    display: flex;
}






/* Split the screen in half */
/*.split {
    height: 100%;
    width: 50%;
    position: fixed;
    z-index: 1;
    top: 0;
    overflow-x: hidden;
    padding-top: 20px;
}*/

/* Control the left side */
/*.left {
    left: 0;
    background-color: #111;
}*/

/* Control the right side */
/*.right {
    right: 0;
    background-color: red;
}*/

/* If you want the content centered horizontally and vertically */
/*.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}*/

/* Style the image inside the centered container, if needed */
/*.centered img {
        width: 150px;
        border-radius: 50%;
    }*/






.autoFontH1 {
    font-size: clamp(16px, 5vw, 36px); /* min 16px, preferred 6vw, max 36px */
}

.autoFontH2 {
    font-size: clamp(8px, 4vw, 26px); /* min 16px, preferred 6vw, max 36px */
}

.centerContent {
    text-align: center;
    align-content: center;
    align-items: center;
    align-self: center;
    white-space: nowrap;
}

#drop_zone {
    width: 150px;
    height: 150px;
    align-items: center;
    position: relative;
    display: grid;
    place-items: center;
}

#fileUploadServerIcon {
    width: inherit;
    height: inherit;
    align-items: center;
    position: absolute;
    z-index: 1;
}

#uploadArrowServerIcon {
    width: 50px;
    height: auto;
    opacity: 0;
    position: relative;
    align-items: end;
    transition: opacity 1s, transform 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: absolute;
    z-index: 2;
}

#uploadErrorServerIcon {
    width: 70px;
    height: auto;
    opacity: 0;
    position: relative;
    align-items: end;
    transition: opacity 1s, transform 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: absolute;
    z-index: 3;
}

#uploadText {
    width: inherit;
    height: inherit;
    position: relative;
    align-items: center;
    align-content: end;
    position: absolute;
    z-index: 4;
}

#uploadProgressBar {
    height: 15px;
}

#diskInfoBars {
    height: 30px;
    background: linear-gradient(to right, green, yellow, red);
    border-radius: 20px;
    text-align: center;
    line-height: 30px;
    color: white;
    font-weight: bold;
}

#uploadArrowServerIcon {
    width: 50px;
    height: auto;
    opacity: 0;
    position: relative;
    align-items: end;
    transition: opacity 1s, transform 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: absolute;
    z-index: 2;
}

.container {
    display: flex;
    justify-content: space-between;
    width: calc(100vw - 50px);
    max-width: 500px;
    border: 1px solid #000;
    padding: 10px;
    align-content: center;
}

.panel {
    width: 45%; /* Adjust the width as needed */
    text-align: center;
    border: 1px solid #000;
    padding: 5px;
    align-content: center;
}








@media (max-width: 600px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .panel {
        width: 100%;
        margin-bottom: 10px;
    }

    .centerContent {
        text-align: center;
        align-content: center;
        align-items: center;
        align-self: center;
    }
}
