.bookmark {
    position: relative;
    height: 180px;
    width: auto;
    display: inline-block;
}

.bookmark-img {
    height: 100%;
    width: auto;  /* maintain aspect ratio */
}

.unbookmark-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: #20672c;
  border: none;
  border-radius: 5px;
  padding: 3px 3px;
  margin: 3px 3px;
  cursor: pointer;
  
  /* Flexbox properties to center the SVG */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.unbookmark-button:hover {
  background-color: #339643;
}


#bookmarkModule {
    display: flex;
    flex-direction: row;
    align-items: flex-start;  /* align images at the top */
    flex-wrap: wrap;  /* wrap to the next line if needed */
    gap: 10px;  /* some gap between images */
}





/* Apply Flexbox to the master and super-top rows */
.tabs {
  display: flex;
}

/* Make sure the tabs in the rows don't shrink or grow, and add a little space between them */
.tab {
  
  font-size: 20px;
  border-right: 1px solid #ddd;
  flex: 0 0 auto;
  padding: 10px 15px;
  cursor: pointer;
  background-color: black;
  color: rgb(220, 220, 220);
  text-transform: uppercase;
}

.tab:hover {
  background-color: #339643;
}
.tab.active {
  background-color: #20672c;
}
/* Last tab of each row should not have margin */
.tab:last-child {
  margin-right: 0;
}






.uploadRow, .listTopRow {
  display: flex;
  width: 100%;
  align-items: center;
}

.uploadCell {
  flex: 1; /* Distribute columns evenly */
  padding: 5px; /* Optional: Add padding for spacing */
  box-sizing: border-box; /* Ensure padding doesn’t affect width calculation */
}

.uploadCell-small {
  flex: 1; /* Each cell will take equal space by default */
  padding: 5px; /* Add some padding for spacing */
  box-sizing: border-box; /* Ensure padding doesn’t affect width */
}

.uploadCell-actions {
  flex: 0 0 150px; /* Set a fixed width for the Actions column */
}


.listTopRow{
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  min-height: 60px;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;  /* Optional: for clearer separation between rows */
}



.listRow{
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #4e4e4e;  /* Optional: for clearer separation between rows */
}
.listRow:hover{  
  background-color: rgb(31, 31, 31);  /* Add a dark grey background on hover */
}
.listRow img{
  height: 60px;
  object-fit: contain;
  object-position: center;
}
.verify-upload, .reject-upload {
  z-index: 10; /* Ensure the buttons are on top of the row content */
  position: relative; /* Required for z-index to work */
}







.admin-module-box {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  background-color: #4e4e4e;
  width: 400px;
  margin: 20px;
}

.admin-module-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.admin-input-field {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.admin-extrasBtns{
  background-color: #20672c;
  border: 1px solid #878787;
}