.tab {
  width: 100%;
  height: 38px;
  background-color: #2d2d30;
  border-bottom: 1px solid #3f3f46;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  user-select: none;
  flex-shrink: 0;
}

.tab .tab-item {
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 100%;
  cursor: pointer;

  /* Width behavior */
  min-width: 60px;
  width: 180px; /* preferred width */
  max-width: 180px; /* enforce upper limit */

  /* Text handling */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  /* Styling */
  color: #cccccc;
  border-right: 1px solid #3f3f46;
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.tab .tab-item.active {
  background-color: #3f3f46;
  color: white;
}

.tab .tab-item:hover {
  background-color: #3a3a3d;
}

.tab .tab-label {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tab .tab-close {
  font-size: 14px;
  cursor: pointer;
  opacity: 0.6;
}

.tab .tab-close:hover {
  opacity: 1;
}
