.tcw-tabs-carousel {
  width: 100%;
}
.tcw-tabs {
  margin-bottom: 20px;
}
.tcw-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  text-align: center;
  width: 120px;
}
.tcw-tab img {
  max-width: 50px;
  height: auto;
  margin-bottom: 5px;
}
.tcw-tab i {
  font-size: 20px;
  margin-bottom: 5px;
}
.tcw-tab.active {
  border-color: #0073aa;
  background: #e6f0fa;
}
.tcw-tab-contents {
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.tcw-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tcw-button {
  background-color: #0073aa;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}
.tcw-button:hover {
  background-color: #005f8d;
}