/*
 * Media processing
 *
 * Media Common Styles
 *
 * Pavlin Georgiev
 * 2023 Softel Labs
 *
*/


body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

/* header styles */
header {
  background-color: #343a40;
  color: white;
  padding: 15px;
}

/* sidebar styles */
aside {
  background-color: #343a40;
  color: white;
  padding: 15px;
  width: 200px;
  position: fixed;
  top: 70px;
  bottom: 0;
  left: 0;
}

/* main content styles */
main {
  margin: 70px 0 0 200px;
  padding: 15px;
}

/* adjust the width of the sidebar to 0 when it's not visible */
@media (max-width: 992px) {
  aside {
    width: 0;
  }
  main {
    margin: 70px;
  }
}

upper-bar {
  display: flex;
  align-items: center;
  background-color: #F5F5F5;
  padding: 10px;
}

.user-info {
  margin-left: auto;
}

.main-container {
  display: flex;
}

.content {
  margin: 0 auto;
}

.stack_panel {
  font-size: 16px;
  background-color: rgb(173, 204, 230);
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 1px solid #a6a29a;
  border-radius: 15px;
  padding: 20px;
  margin: 20px;
  text-align: left;
  /* width: 640px; */
}


.row {
  display: flex;
}

.col-2 {
  flex: 0 0 15%;
  max-width: 15%;
}

.col-8 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-1 {
  flex: 0 0 10%;
  max-width: 10%;
}

.col-21 {
  flex: 0 0 25%;
  max-width: 25%;
}
.col-22 {
  flex: 0 0 18%;
  max-width: 18%;
}
.col-23 {
  flex: 0 0 15%;
  max-width: 15%;
}
.col-24 {
  flex: 0 0 18%;
  max-width: 18%;
}


.container-fluid{
  margin-top: 50px;
}

.middle-panel {
  overflow-y: scroll;

  position: relative;
  width: 75%;
  height: 100%;
  top: 7%;
  left: 15%;
  right: 90%;
  border: 1px solid #111;
}

.left-panel {
  background-color: #f2f2f2;

  position: fixed;
  width: 15%;
  height: 100%;
  top: 7%;
  left: 0;
  border: 1px solid #111;
}

.right-panel {
  background-color: #f2f2f2;

  position: fixed;
  width: 10%;
  height: 100%;
  top: 7%;
  left: 90%;
  border: 1px solid #111;
}

.top-panel{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;

  /* justify-content: center;
  align-items: center; */
  height: 50px;
  background-color: rgba(211, 211, 211, 0.3);
}
.top-panel > * {
  margin: 0 5px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}


.content-wrapper {
  outline: 2px groove #d3d3d3;
  outline-offset: 3px;
  border-radius: 10px;
}