html {
    background-color: black;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: white;
    display: grid;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    place-content: stretch;
}

h1 {
    color: white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin: 0px;
    padding: 10px 20px;
    font-size: 1.5em;
}

h4 {
    color: white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 0.9em;
    margin: 10px;
}

form {
    display: inline-block;
    width: 100%;
}

input {
    width: 80%;
    height: 33px;
    border-radius: 11px;
    border: white;
    background-color: #efefef;
    font-size: 18px;
    justify-items: center;
}

a {
    text-decoration: none;
    color: dodgerblue;
    font-family: monospace;
}

button {
    border: none;
    background-color: black;
    color: #fbca07;
    padding: 15px 20px;
    margin: 10px;
    border-radius: 25px;
    font-weight: bold;
}

.container {
    background: inherit;
    padding: 40px 0px;
    border-radius: 12px;
    width: 700px;
    text-align: center;
    place-items: center;
    justify-self: center;
    place-self: center;
}

.topbar {
    background: black;
    width: 100%;
    height: fit-content;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
}

.spacer {
    width: 100%;
    height: 100%;
}

.horizontal-spacer {
    width: 100%;
    height: 100%;
}

.bar-btn {
    background: rgb(251, 202, 5);
    color: black;
    place-content: center;
    width: 150px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.bar-btn2 {
    background: rgb(55, 55, 55);
    color: white;
    place-content: center;
    width: 150px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.nav-container {
    display: flex;
    padding: 0px;
}

.form-container {
    width: 100%;
    text-align: left;
}

.layout-container {
    width: fit-content;
    text-align: center;
}

#drop_zone {
    border: 2px dashed #ccc;
    color: rgb(125, 125, 125);
    border-radius: 20px;
    background-color: #eaeaea;
    height: 100px;
    display: inline-table;
    cursor: pointer;
    transition: border-color 0.3s;
    text-align: center;
    width: 100%;
    padding: 20px 0px;
    margin: 20px 0px;
}

#drop_zone img {
    max-width: 85px;
}

#drop_zone.dragover {
    border-color: #007bff; /* Change border color when files are dragged over */
    background-color: #6ff1ff;
}

#drop_zone input[type="file"] {
    display:none;
}

.form-label-1 {
    color: rgb(58, 58, 58);
    font-size: 1.0em;
}

.form-label-2 {
    color: rgb(58, 58, 58);
    font-size: 0.8em;
}

.form-label-3 {
    color: rgb(58, 58, 58);
    font-size: 0.5em;
}

.footer {
    background: black;
    width: 100%;
    height: fit-content;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    text-align: center;
}

button.copy-link {
    border: none;
    background-color: #fbca07;
    color: #000000;
    padding: 7px 10px;
    margin: 10px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.copy-link img {
    width: 40px;
}

.dl-link {
    width: 100%;
    padding: 10px 0px;
    border-radius: 15px;
    border: #00000040 solid 3.0px;
    display: flex;
    flex-direction: column;
}

.dl-link a {
    width: 100%;
}

.dl-link p {
    font-family: monospace;
    margin: 0px;
    padding: 0px 15px;
    text-align: left;
}

.dl-link img {
    width: 30px;
}

.pass_input {
    background-color: #efefef;
    padding: 0px;
    display: flex;
    border-radius: 10px;
    border: #00000026 solid 1px;
    margin: 10px 0px;
}

input.passwordInput {
    height: 33px;
    border-radius: 11px;
    border: white;
    background-color: transparent;
    font-size: 18px;
    justify-items: center;
    width: 100%;
}

.togglePassword {
    padding: 0px 12px;
    margin: 0px;
    background-color: transparent;
}

.togglePassword img {
    max-height: 15px;
    max-width: 22px;
    padding: 2px 0px 0px 0px;
}

@media only screen and (max-width: 768px) {
    .container {
        width: 400px;
    }
}

@media only screen and (max-width: 440px) {
    .container {
        width: 90%;
    }
}