body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background-color: #f9f9f9;
  padding: 0;
  margin: 0;
}

main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
}

@media screen and (max-width: 769px) {
  main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /*height: 100vh;*/
  }
}

.hamburger-container,
.close-sidebar {
  width: 100%;
  display: flex;
  padding-right: 20px;
  justify-content: flex-end;
}

@media screen and (min-width: 769px) {
  .hamburger-container,
  .close-sidebar {
    display: none;
  }
}

.hamburger-container i {
  font-size: 20px;
  color: #464849;
  cursor: pointer;
}

.close-sidebar i {
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  padding: 20px;
}

.sidebar-mobile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;

  background-color: #00368b;
  color: #fff;
}

.sidebar {
    width: 310px;
    background-color: #00368b;
    color: #fff;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 75px;
    height: 100%;
}

@media screen and (max-width: 769px) {
  .sidebar {
    display: none;
    background-color: yellow;
  }
}

.links {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}

.link-item {
  display: flex;
  align-items: center;
  padding-left: 40px;
  font-size: 20px;
  height: 100px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.link-item:hover {
  background-color: #d9d9d9;
  color: #00368b;
}

.logout-container {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  height: 100px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.content {
  flex: 1;
  display: flex;
  gap: 60px;
  padding: 50px;
  padding-top: 10px;
  overflow: hidden;
  flex-direction: column;
}

@media screen and (max-width: 769px) {
  .content {
    padding: 20px;
    gap: 30px;
  }
}

.header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 769px) {
  .header {
    gap: 15px;
  }
}

.header h3 {
  color: #ffc655;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
}

@media screen and (max-width: 769px) {
  .header h3 {
    font-size: 14px;
  }
}

.header h1 {
  color: #00368b;
  font-size: 48px;
  line-height: 40px;
  font-weight: 700;
}

@media screen and (max-width: 769px) {
  .header h1 {
    font-size: 32px;
  }
}

.dropdown-container {
  width: 100%;
  max-width: 580px;
  font-size: 20px;
  height: 100px;
  cursor: pointer;
  display: flex;
  gap: 20px;
  flex-direction: column;
  transition: background-color 0.3s ease;
}

.dropdown-container p {
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  color: #0000/60;
}
select {
  width: 100%;
  /*height: 50px;*/
  border-radius: 10px;
  padding: 10px 20px;
  border: 1px solid #d9d9d9;
}

/* Style tab links */

.tab {
  margin-left: -50px;
  margin-right: -50px;
  height: 100%;
}

@media screen and (max-width: 769px) {
  .tab {
    margin-left: -20px;
    margin-top: 50px;
  }
}

.tab-header {
  display: flex;
  padding-left: 50px;
}

@media screen and (max-width: 769px) {
  .tab-header {
    padding-left: 30px;
  }
}

.tablink {
  background-color: transparent;
  color: #464849;
  float: left;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border: none;
  border-bottom: #464849;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  font-size: 17px;
  width: 20%;
}

@media screen and (max-width: 769px) {
  .tablink {
    font-size: 14px;
    width: 40%;
  }
}
/* 
.tablink:hover {
  background-color: #00368b33;
} */

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
  color: white;
  display: none;
  height: 100%;
  overflow: hidden;
  padding: 100px 20px;
}

#Application {
  background-color: #00368b33;
}
#Message {
  background-color: #00368b33;
}

.application-tab-content {
  width: 100%;
  max-width: 100dvw;
  height: 100%;
  padding: 65px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 1024px) {
  .application-tab-content {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 425px) {
  .application-tab-content {
    padding: 30px 20px;
  }
}

.cards {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

@media screen and (max-width: 425px) {
  .cards {
    flex-direction: column;
    overflow: auto;
  }
}
/*
.card {
  width: 250px;
  height: 300px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  padding: 20px;
  padding-top: 50px;
}
*/
.card h4 {
  font-size: 30px;
  color: #464849;
  line-height: 45px;
  font-weight: 700;
}

.card p {
  font-size: 15px;
  color: #464849;
  line-height: 22.5px;
  font-weight: 500;
}

.card h5 {
  font-size: 24px;
  color: #464849;
  line-height: 35px;
  font-weight: 700;
}

.card .status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  margin-top: auto;
}

.card .status .dot {
  width: 50px;
  height: 50px;
  border-radius: 100px;
}

.submitted {
  background-color: red;
}

.rejectedordeclined {
    background-color: red;
}

.underappeal{
    background-color: #ffc655;
}

.placed {
    background-color: rgba(0, 200, 83, 1);
}

.accepted {
    background-color: rgba(255,152,0,1);
}
