html {
    position: relative;
    min-height: 100%;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
}
p {
    margin-top: 5px;
    margin-bottom: 5px;
}
:root {
    --background-color: #fff;
    --text-color: #000;
    --table-td-border: black 1px solid;
}

nav {
    vertical-align: middle;
}

input[readonly].readonly-text {
    background-color: #fff;
}

input[type=text]{
    border-radius: 20px;
    border: 1px solid #2d9fd9;
    /*color: #a0d18c;*/
    background-color: var(--background-color);
    color: var(--text-color);
    width: 250px;
    height: 30px;
    /*padding-left: 10px;*/
}

input[type=password]{
    border-radius: 20px;
    border: 1px solid #2d9fd9;
    /*color: #a0d18c;*/
    background-color: var(--background-color);
    color: var(--text-color);
    width: 250px;
    height: 30px;
    /*padding-left: 10px;*/
}

input[type=text]:focus {
    outline: none;
    border: 1px solid #a0d18c;
    color: #2d9fd9;
}

.form-control {
    margin-left: auto;
    margin-right: auto;
}

ul {
    color: #000000 !important;
}

footer {
    text-align: center;
}

[data-theme="dark"] {
    --background-color: #3F3F3F;
    --text-color: #fff;
    --link-color: #1da1f2;
    --table-td-border: #2d9fd9 1px solid;
}

.navbar-dark {
    background-color: #243447;
}

.navbar-light {
    background-color: #e3f2fd;
}

a {
    color: var(--link-color) !important;
    text-decoration: none;
}
a:link a:visited a:active a:hover {
    color: var(--link-color) !important;
}

label {
    margin-bottom: 5px;
}

.hidden {
    display: none;
}

.wishlist_item {
    width: auto;
    margin-bottom: 5px;
}

.eorzeadb_link {
    text-decoration: none;
    color: var(--text-color) !important;
}

table {
    margin: 5px auto;
}

th, td {
    border: var(--table-td-border) !important;
    text-align: center;
}


#spinner:not([hidden]) {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#spinner::after {
    content: "";
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #f25a41;
    border-radius: 100%;
    will-change: transform;
    animation: spin 1s infinite linear
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


button {
    margin-top: 5px;
}