.dashboard-table-wrapper {
  display: none;
  height: 30vh;
  width: 44.95vw;
  margin: 3rem 0rem 1rem 0rem;
}

.dashboard-table-container::-webkit-scrollbar {
  width: 5px;
}

.dashboard-table-container::-webkit-scrollbar-track {
  background-color: #ddd;
}

.dashboard-table-container::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.dashboard-table-container {
  font-size: 12px;
  overflow-y: auto;
  height: 150px;
  scrollbar-width: thin;
  padding-right: 5px;
}

.dashboard-table {
  border-spacing: 0;
  width:100%;
}
.dashboard-table tr {
  text-align: center;
}

.table-bordered thead tr:first-child th, .table-bordered caption + tbody tr:first-child th, .table-bordered caption + tbody tr:first-child td, .table-bordered colgroup + thead tr:first-child th, .table-bordered colgroup + tbody tr:first-child th, .table-bordered colgroup + tbody tr:first-child td, .table-bordered thead:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child td {
  border: 1px solid #ddd;
}

.dashboard-table tr:first-child > th {
  position: sticky;
  top: 0;
  background-color: #fff;
  border: 1px solid #ccc;
}

.dashboard-table td {
  border: 0.5px solid #dddddd;
}

.dashboard-table th, td { 
  min-width: 70px; 
}

.semester-col {
  min-width: 65px;
}
.course-col {
  min-width: 220px;
}

.table-bordered {
  border: 1px solid #ddd !important;
}


@media screen and (max-width: 768px) {
  .course-resource-page .semester-selector {
    float: unset;
    display: grid;
  }
  
  .course-resource-page .semester-selector .header {
    padding: 1em;
    font-size: 14px;
  }

  .dashboard-table-container {
    font-size: 12px;
  }

  .dashboard-table th, td { 
    min-width: 40px; 
  }
  
  .course-col {
    min-width: 120px;
  }
}