.bowler-ranking-widget {
  background: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 0px;
  font-family: 'Segoe UI', Arial, sans-serif;
  max-width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.bowler-ranking-widget h3 {
  margin-top: 0;
  font-size: 1.5em;
  margin-bottom: 0px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 12px;
  color: #333;
  text-align: center;
  font-weight: 600;
}

.bowler-tabs-isolated {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
  gap: 15px;
  border-radius: 8px;
  background-color: #f5f5f5;
  padding: 5px;
}

.bowler-tab-isolated {
  padding: 8px 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 15px;
  border-radius: 6px;
  color: #555;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.bowler-tab-isolated:hover {
  background: #e9e9e9;
  color: #333;
}

.bowler-tab-isolated.bowler-active-isolated {
  background: #4CAF50;
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.bowler-bar-b {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  font-weight: bold;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 8px 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease-in-out;
}

.bowler-bar-b:hover {
  transform: translateY(-2px);
}

.flag-wrapper-b {
  width: 25.2px;
  height: 25.2px;
  font-size: 25.2px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bar-container-b {
  flex-grow: 1;
  height: 32px;
  background: #e0e0e0;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.bar-b {
  height: 100%;
  background: linear-gradient(to right, #6FCF97, #4CAF50);
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 14px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  transition: width 0.6s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
}