.msm-tabs {
  font-family: Arial, sans-serif;
  max-width: 100%;
  background: #efd7e5; /* asil renk burada */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255, 182, 193, 0.2);
  margin-top: 0px;
}


.msm-tab-buttons {
  display: flex;
  background: #ffb6c1;
}

.msm-tab-buttons button {
  flex: 1;
  padding: 12px;
  background: #ffc0cb;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.msm-tab-buttons button.active {
  background: #ff69b4;
}

.msm-tab-content {
  display: none;
  padding: 15px;
}

.msm-tab-content.active {
  display: block;
}

.msm-tab-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.msm-tab-content li {
  background: white;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.msm-tab-content li img {
  width: 20px;
  height: 15px;
  object-fit: contain;
  border-radius: 50%;
}



.msm-tab-content li a {
  font-size: 13px; /* daha zarif */
  font-weight: normal;
  line-height: 1.5;
  color: #4a2c35;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

