body {
    transition: opacity 0.5s ease;
    animation: fadeInDown 0.5s ease;

}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


.content-body {
    margin: 1%;
}

.buttons {
    display: flex;
}

.files-Area {
    margin-top: 1%;
    margin-left: 1%;
    width: 60%;
    float: left;
}

.files-upload {
    width: 100%;
}

.desktop {
    margin: 0%;
    padding: 0%;
    top: 50%;
}

.mobile {
    display: none;
}

.user-info {
    width: 100%;
}

.user-info th {
    margin: 5%;
}

.right {
    margin: 25px 10px 0px 30px;
    float: right;
    width: 35%;
}

#table-title {
    height: 55px;
    text-align: center;
    width: 100%;
    border-style: none;
}


#file-download-button {
    text-align: center;
    margin: 2%;
    display: flex;
    height: fit-content;
    width: 100%;
}

#file-upload-button {
    margin-top: 1%;
    width: 100%;
}

#arama {
    margin-top: 1%;
    margin-bottom: 1%;
}

.progress {
    height: 25px;
}

.progress-bar {
    line-height: 25px;
}

.progress-percentage {
    font-weight: bold;
}

.content-main {
    margin-left: auto;
    margin-right: auto;
    max-width: 1680px;
}


@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#alertMessage {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s, transform 0.5s;
}

@media screen and (max-width: 992px) {

    .desktop {
        display: none;
    }

    .mobile {
        display: table-row;
    }

    .user-info {
        display: none;
    }

    .right {
        float: none;
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 95%;
    }

    .left {
        float: none;
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 95%;
    }

    .files-Area {
        float: none;
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 95%;
    }

    #file-download-button {
        display: flex;
    }


}