@import url('../../resources/main.css');

::-webkit-scrollbar {
    width: 2px;
    /* Set the width of the scrollbar */
  }

  ::-webkit-scrollbar-thumb {
    background-color: #f6783a;
    /* Set the color of the scrollbar thumb */
    border-radius: 6px;
    /* Set the border radius of the scrollbar thumb */
  }

  ::-webkit-scrollbar-track {
    background-color: #104565;
    /* Set the color of the scrollbar track */
  }

  a {
    color: #000;
    text-decoration: none;
  }

  body {
    font-family: "Roboto", sans-serif;
  }

  .sidebar {
    width: 5rem;
    height: 60vh;
    position: fixed;
   bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 100;
    cursor: pointer;
    background: #104565;
    transition: 0.5s;
    overflow: hidden;
  }

  .sidebar:hover {
    width: 20rem;
  }

  .brand {
    text-align: center;
    font-size: 1.4rem;
    padding: 1rem 0;
    color: #000;
  }

  .brand:hover {
    background: #f6783a;
  }

  .nav-item__icon {
    color: white;
  }

  .brand span {
    display: none;
  }

  .nav-list {
    list-style: none;
  }

  .nav-item {
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-item:hover {
    background: #f6783a;
  }

  .nav-item a {
    position: relative;
    white-space: nowrap;
    display: flex;
    gap: 1rem;
  }

  .nav-item__icon {
    position: relative;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-item__text {
    position: relative;
    display: none;
    font-size: 1em;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .avatar {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: 700;
  }

  .logout {
    margin-left: 0.2rem;
  }

  .sidebar:hover .brand span {
    display: inline;
  }

  .sidebar:hover .nav-item {
    justify-content: start;
  }

  .sidebar:hover .nav-item__text {
    display: flex;
    align-items: center;
  }

  .nav-item__text {
    color: white;
  }

  .brand p {
    color: white;
    font-weight: bold;
  }

  h5 {
    margin-bottom: 18px;
  }

  .ssr_btn {
    margin: 6px;
    background-color: #f6783a !important;
    color: #fff !important;
    border-radius: 25px !important;
    width: 10vw;
    height: 7vh;
    font-weight: bold !important;
  }
  .ssr_btn:hover {
    background-color: #fff !important;
    color: #f6783a !important;
    border-color: #f6783a;
  }
  .criterion-btn {
    margin: 6px;
    background-color: #104565 !important;
    color: #fff !important;
    border-radius: 25px !important;
    width: 10vw;
    height: 7vh;
    font-weight: bold !important;
  }
  .criterion-btn:hover {
    background-color: #fff !important;
    color: #104565 !important;
    border-color: #104565;
  }
  thead {
    background-color: #104565;
    color: #fff;
  }
  
  .blue {
    color: #104565;
  }
  .orange {
    color: #f6783a;
  }
  
  @media only screen and (min-width: 120px) and (max-width: 768px) {
    .criterion-btn {
      margin-left: 0.8%;
      margin-right: 0.8%;
      margin-top: 0.5%;
      width: 25vw;
      background-color: #104565 !important;
      color: #fff !important;
      border-radius: 25px !important;
    }
    .criterion-btn:hover {
      background-color: #fff !important;
      color: #104565 !important;
      border-color: #104565;
    }
    .ssr_btn {
      margin-left: 0.8%;
      margin-right: 0.8%;
      margin-top: 0.5%;
      width: 35vw;
      background-color: #f6783a !important;
      color: #fff !important;
      border-radius: 35px !important;
    }
    .ssr_btn:hover {
      background-color: #fff !important;
      color: #f6783a !important;
      border-color: #f6783a;
    }
    table {
      overflow-x: auto;
    }
  }
  
  table {
    width: 100%;
  }
  .col1 {
    width: 20%!important;
  }
  
  .col2 {
    width: 60%!important;
  }
  
  .col3 {
      text-align: center;
    width: 20%!important;
  }
  
  
  .col3-view{
      text-align: center;
  }
  
  .ssr_btn a{
    color: white!important;
  }