/* For single-application page */
.sidenav {
  height: 50vh;
  width: 15rem;
  border-right: 2px #818181 solid;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: 2rem;
}

.sidenav a {
  padding: 15px 8px 15px 16px;
  text-decoration: none;
  font-size: 1.2rem;
  color: #818181;
  display: block;
}
/* Style the buttons inside the tab */
.sidenav .tab-links {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.2s;
}

/* Change background color of buttons on hover */
.sidenav .tab-links:hover {
  color: #525050;
  ;
}

/* Create an active/current tablink class */
.sidenav .tab-links.active {
  color: #525050;
  font-weight: bold;
}

.application-sub-page {
  display: flex;
}

.tab-content {
  display: none;
  width: 100%;
  padding: 2rem;
}

.active {
  display: block;
}

footer {
  z-index: 2;
}

.application-header {
  justify-content: space-between;
  display: inline-flex;
  width: 75%;
  align-items: center;
}

.application-header div h4 {
  margin-bottom: 10px;
}

.application-body {
  margin-top: 2.5rem;
}

#Settings > h4 {
  margin-top: 62px;
}

/* For application image */
.application-thumbnail {
  background-color: #c0baba;
  width: 230px;
  height: 150px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.app-image {
  width: 60%;
  vertical-align: middle;
}

/* For application settings */
.application-settings-action {
  border: #818181 1px solid;
  border-radius: 7px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.application-settings-action-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
}

.application-settings-action-popup>div {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 40px;
  border-radius: 5px;
  width: 50%;
  height: 55vh;
}

.setting-action-buttons {
  display: flex;
  justify-content: space-around;
  margin-top: 0.5rem;
}

#cancel-action, #statusMessage{
  color: red;
}

#app-post-id-field{
  display: none;
}

#statusMessage{
  visibility: hidden;
  height: 10px;
}
#selectedFilesList{
  max-height: 200px; 
  overflow-y: auto; 
  border: 1px solid #ccc;
  padding: 10px;
}


.comment {
  box-shadow: 1px 1px 1px rgb(178, 178, 178);
  margin-bottom: 1rem;
  padding: 1rem;
}
.comment_info {
  display: flex;
  justify-content: space-between;
}