body {
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times !important;
}

.logo-side img {
    width: 40px;
}

.logo-side span,
a,
img {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
}

.navbar {
    background-color: #34495e;
}

.topbar {
    background-color: #dddfe0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    /*height: calc(100vh - 185px);*/
   
    height: calc(100vh - 60px);
    padding: 60px 0;
    flex-direction: column;
    text-align: center;

}

.topbar h4 {
    font-size: 30px;
}

.topbar p {
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
}

.uploaded-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.uploaded-side img {
    width: 150px;
}

.custom-file-input {
    border: 2px solid #000;
    padding: 12px 50px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

.custom-file-input:hover {
    background-color: #000;
    color: #fff;
    transition: 1s;
    transform: scale(1.1, 1.1);
}

.custom-file-input input {
    display: none;
}


.link-paste-input input {
    padding: 12px 16px;
    border-radius: 16px 0 0 16px;
    border: #000;
    width: 88%;
}

.link-paste-input button {
    border: none;
    background-color: #000;
    color: #fff;
    border-radius: 0 16px 16px 0;
    padding: 12px 30px;
}

.pdf-history-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
    background-color: antiquewhite;
}

.pdf-history-side h3 {
    text-align: center;

}

.history-card {
    background-color: #34495e;
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    gap: 5px;
    border-radius: 20px;

}

.history-card img {
    width: 150px;
    margin: 0 auto;
}

.history-card h4,
p {
    margin-bottom: 0;
    padding: 0;
    color: white;
}

.history-card-buttons button {
    width: 50%;
    padding: 10px 0;
    font-size: 16px;
    border-radius: 16px;
    border: none;
}

.history-card-edit {
    background-color: #fff;
}

.history-card-edit:hover {
    background-color: #7B8BF8;
    color: white;
    transition: 0.10s;
}

.history-card-delete {
    background-color: #fff;
}

.history-card-delete:hover {
    background-color: red;
    color: white;
    transition: 0.10s;
}

.footer {
    display: flex;
    flex-direction: column;
    background-color: #000000b6;
}



.copyright a,
p {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

@media only screen and (min-width: 300px) and (max-width: 800px) {
    .link-paste-input {
        width: 100vw;
    }
}

@media screen and (max-width:767px) {
    .topbar {
        height: 100%;
    }
}