.inst-desc-container {
  margin-left: 22vw;
  padding: 2rem 2rem 0 2rem;
  box-sizing: border-box;
}

.inst-desc-box {
  border: 1px solid #cce0dc;
  border-radius: 6px;
  background: #f9fcfb;
  padding: 1.5rem 2rem;
  font-family: inherit;
}

.inst-desc-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #1a3c36;
  margin-bottom: 0.75rem;
}

.inst-desc-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.inst-desc-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.inst-desc-text {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.sidebar-tabs {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  top: 120px;
  left: 0;
  height: calc(100vh - 80px);
  width: 22vw;
  background: #f7f9f8;
  border-right: 1px solid #dcdedc;
  box-sizing: border-box;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #dcdedc;
}

.sidebar-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-title {
  font-weight: 600;
  font-size: 15px;
}

.icon-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-dropdown {
  position: absolute;
  top: 28px;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 190px;
  z-index: 50;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  width: 100%;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-align: left;
  color: #1a1a1a;
}

.sidebar-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 10px 16px;
  border: none;
  background-color: #f7f9f8;
  color: #000;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease, color 0.2s ease;
  position: relative;
}

.sidebar-tab.active {
  background-color: #e6efef;
}

.sidebar-tab-indicator {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #2f615e;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.sidebar-tab-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sidebar-tab-label {
  font-size: 14px;
  font-weight: 400;
}

.sidebar-tab-label.bold {
  font-weight: 600;
}

.sidebar-badge {
  background: #3d7f7a;
  color: #fff;
  border-radius: 10px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

.tab-container {
  margin-left: 22vw;
  padding: 2rem;
}

.tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.tab-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2f615e;
  margin: 0;
}

.filled-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #2f615e;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
}

.filled-button:hover {
  background: #284f4d;
}

.outlined-btn {
  border: 1px solid #3d7f7a;
  color: #3d7f7a;
  background: white;
  border-radius: 4px;
  padding: 4px 10px;
  cursor: pointer;
  font-weight: 500;
}

.outlined-btn:hover {
  background: #f3f8f7;
}

.tab-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.tab-filter input {
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  width: 100%;
}

.projects-legend {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.projects-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.projects-legend-symbol {
  font-weight: 700;
  font-size: 1rem;
}

.projects-legend-label {
  font-size: 0.85rem;
}

.add-users-container {
  padding: 0.5rem;
}

.add-users-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.required {
  color: red;
}

.remove-user-btn {
  border: 1px solid #c62828;
  background: white;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-user-btn {
  background: #2f615e;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.5rem;
  font-weight: 600;
}

.add-user-btn:hover {
  background: #284f4d;
}

.bulk-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  position: relative;
}

.bulk-actions-group {
  position: relative;
}

.bulk-actions-trigger.active {
  background: #f2f5f4;
}

.bulk-actions-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  border: 1px solid #dcdedc;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1rem;
  z-index: 10;
  width: 220px;
}

.bulk-actions-dropdown.wide {
  width: 250px;
}

.bulk-actions-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.4rem;
}

.bulk-actions-label {
  margin-left: 0.5rem;
}

.bulk-actions-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.btn-outlined-green {
  border: 1px solid #3d7f7a;
  background: #fff;
  color: #3d7f7a;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outlined-red {
  border: 1px solid #c62828;
  background: #fff;
  color: #c62828;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-filled-green {
  background: #3d7f7a;
  color: #fff;
  border: 1px solid #3d7f7a;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-outlined-gray {
  border: 1px solid #c4c7c5;
  background: #fff;
  color: #1a1a1a;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.edit-button {
    color: #FEC65B;
    margin: 1px;
    border: 1px solid;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px
    -webkit-transition: background-color 50ms linear;
    -ms-transition: background-color 50ms linear;
    transition: background-color 50ms linear;
    cursor: pointer;
}
