/*Header*/
header {
    display: flex;
    width: 100%;
    height: 85px;
    background-color: rgb(50, 50, 50);
    gap: 10px;
    opacity: 50%;
    position: absolute;
    top: 0;
    padding-bottom: 50px;
    border-bottom: rgb(175,175,175) 1px solid;
}

#profiletoggle {
    cursor: pointer;
}
.nav {
    flex-basis: 100%;
    padding-top: 15px;
    color: rgb(175,175,175);
}

.navbar-left {
    float: left;
}

.navbar-left a {
    padding-left: 25px;
}

.navbar-right {
    float: right;
}

.navbar-right a {
    padding-right: 25px;
}

.nav-item {
    text-align: right;
}

.header-link {
    color: rgb(175,175,175);
}

.page-link {
    background-color: #070F2B;
    color: #535C91;
    width: 100px;
    height: 40px;
    align-items: center;
    text-align: right;
    font-size: x-large;
    padding: 5px;
    border-radius: 29px;
}

.header-image {
    height: 30%;
    object-fit: cover;
    padding-left: 0;
}
/***BODY***/
body {
    margin-top: 100px;
    background-color: rgb(50,50,50);
    font-family: "manifold-cf", sans-serif;
    font-weight: 400;
    font-style: italic;
    color: rgb(250,250,250);
    min-height: 100vh;
    align-items: center;
    display: flex;
    flex-direction: column;
    background-image: url('/static/assets/background.jpeg');

}

#saveslistcontainer {
    border: solid white;
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    margin: 25px;
    padding: 25px;
}

#loadcareerbtn {
   color: black;
    background-color: white;
    opacity: 75%;
}
.deletecareerbtn {
    background-color: red;
    opacity: 75%;
}
.modal {
    color: rgb(50,50,50);
}
#home-logo {
    height: 70px;
}

.index-card-img {
    width: 300px;
    border-radius: 5px;
}

.index-section {
    display: flex;
    padding: 50px;
    width: 75%;
    font-size: 1em;
}
.section-inner-text {
    padding: 15px;
    flex-direction: vertical;
}
table {
    width: 80%;
    margin-bottom: 50px;
    overflow-x: auto;
}

.sold-table, .loan-table {
    width: 50%;
}
th {
    text-align: center;
}

td {
    text-align: center;
}

.sortable th {
   cursor: pointer;
}
.sortable th.no-sort {
   pointer-events: none;
}

#loan-tables-container {
    display: flex;
    justify-content: space-evenly;
}

.btn {
    color: white;
    opacity: 55%;
    border: solid white 1px;
}

.profile-btn {
    width: 10%;
}

.num-in {
    width: 100%;
}

.pot-in {
    width: 40%;
}
.val-in {
    width: 75%
}
.modal-pot {
    width: 30%;
}
.pot-update-row input {
    display: inline;
}
a {
    list-style-type: none;
    text-decoration: none;
    color: rgb(175,175,175);
}

.comment-count {
    font-size: x-small;
}

h1 {
    text-align: center;
}

#message {
    text-align: center;
}

.codehilite {
    background-color: rgb(50,50,50);
    width: fit-content;
}

.list-image {
    height: 100px;
}
.post-container {
    padding-left: 50px;
    padding-bottom: 10px;
    width: 80%;
}


ul {
    padding-left: 25%;
    width: 50%;
}

li {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    text-decoration: none;
}
.container {
    display: flex;
    justify-content: center;
}

.disclaimer {
    font-size: 0.5em;
}

/*Footer*/
footer {
    position: relative;
    bottom: 0;
    width: 100%;
    height: auto;
    background-color: rgb(50,50,50);
    color: rgb(175,175,175);
    border-top: rgb(175,175,175) 1px solid;
    font-size: 0.75rem;
    margin-top: auto;
}
.flex-container {
    display: flex;
}
.footer-col {
    color: rgb(175,175,175);
    padding-left: 20px;
}

.footer-col1, .footer-col2 {
    flex: 1;
}
.footer-col3 {
    flex: 2;
}

footer a {
    text-decoration: none;
    color: rgb(175,175,175);
}

footer ul {
    list-style-type: none;
    width: fit-content;
}

.textarea {
    width: 60%;
    height: 600px;
}

#home-container {
    display: inline-flex;
    justify-content: center;
}
#home-left {
    width: 40%;
    display: inline-block;
    margin-left: 25px;
}
#home-right {
    width: 40%;
    display: inline-block;
    margin-right: 25px;
}

.privacy-container {
    padding-top: 75px;
}

/*font-awesome*/
/* Style all font awesome icons */
.fa {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 40px;
  width: auto;
  text-align: center;
  text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Facebook */
.fa-facebook {

}

/* Twitter */
.fa-twitter {

}

@media (max-width: 920px){
    footer li a {
        flex-direction: column;
    }

}