/* Tabs Wrapper */
.jq-tab-wrapper {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  padding: 1em;
  background-color: #f0f9ff; /* light blue background */
  border-radius: 8px;
}

/* Vertical Tabs */
.jq-tab-wrapper.horizontal-tab {
  flex-direction: column;
}

/* Tab Menu */
.jq-tab-menu {
  flex: 1.4;
}

/* Tab Item */
.jq-tab-menu .jq-tab-title {
  background: #e0f2fe; /* Light Blue */
  border-bottom: 1px solid #bae6fd;
  cursor: pointer;
  padding: 1em 1.2em;
  transition: all 0.3s ease;
  color: #333;
  font-size: 1rem;
  border-radius: 6px;
  margin-bottom: 6px;
}

/* First Tab */
.jq-tab-menu .jq-tab-title:first-child {
  margin-top: 0;
}

/* Hover + Active */
.jq-tab-menu .jq-tab-title:hover,
.jq-tab-menu .jq-tab-title.active {
  background: linear-gradient(135deg, #2563eb, #3b82f6); /* Blue Gradient */
  color: #fff !important;
  border-left:0px solid #2563eb;
}

/* Horizontal Tabs */
.horizontal-tab .jq-tab-menu {
  display: inline-flex;
}

.horizontal-tab .jq-tab-menu .jq-tab-title {
  border-bottom: none;
  border-right: 1px solid #d1d1d1;
  margin-bottom: 0;
}

.horizontal-tab .jq-tab-menu .jq-tab-title:first-child {
  border-left: 1px solid #d1d1d1;
}

/* Tab Content */
.jq-tab-content-wrapper {
  flex: 4;
  background: #fff;
  border-radius: 8px;
  padding: 1em 1.5em;
  margin-left: 1em;
  display: flex;
  align-items:flex-start;   /* vertical center */
  box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
}

.jq-tab-content {
  display: none;
}

.jq-tab-content.active {
  display: block;
}

/* FontAwesome Icons */
.fa {
  display: inline-block;
  font-size: 18px;
  margin-right: 8px;
  vertical-align: middle;
}
