/* --- UTILITY BAR STYLES (FLOATING CARD) --- */

.utility-bar-wrapper
{
    position: relative;
    z-index: 80;
    margin-top: -75px;
    padding-bottom: 40px;
    padding-bottom: 100px;
}

/* .utility-bar-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 0 30px 30px 30px;
} */

/* --- CSS for Functionality and Styling --- */
.utility-bar-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 0 30px 0px 30px;
}

/* Tabs Styling */
.utility-bar-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 20px;
    /* margin-bottom: 20px; */
}

.tab-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  font-size: 1.1em;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.tab-item.active {
  color: #333333;
  /* Active text color */
}

.tab-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #333333;
  /* Active underline color */
}

/* Content Switching Styles */
.tab-content-block {
  border-top: 1px solid #e0e0e0;
  /* padding-top: 30px; */
  /* Hidden by default, shown by JS */
  display: none;
}

.tab-content-block.active {
  display: block;
}

/* Form and Input Styling (Example) */
.tracking-form {
  display: flex;
  align-items: center;
}

.tracking-input-group {
  flex-grow: 1;
  position: relative;
  margin-right: 20px;
  height: 60px;
}

.tracking-input-group span {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 0.85em;
  color: #999;
}

.tracking-input {
  width: 100%;
  padding: 10px 10px 10px 40px;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  font-size: 1.1em;
  height: 100%;
  padding-top: 20px;
}

.tracking-input-group i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 1.2em;
  pointer-events: none;
}

.track-button {
  background-color: #253081;
  color: white;
  border: none;
  padding: 0 30px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  height: 60px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.track-button:hover {
  background-color: #555;
}

.utility-block-btn {
  background-color: #253081;
  color: white;
  border: none;
  padding: 0 30px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  height: 60px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
}
