/* Basic layout */
    .tabs { max-width: 700px; margin: 40px auto; font-family: system-ui, Arial; }
    .tab-list { display: flex; gap: 6px; margin-bottom: 12px; }
    .tab-btn {
      padding: 8px 12px;
      border: 1px solid #ccc;
      background: #f8f8f8;
      cursor: pointer;
      border-radius: 6px;
    }
    .tab-btn[aria-selected="true"] {
      background: white;
      border-color: #888;
      font-weight: 600;
    }

    .tab-panel {
      border: 1px solid #ccc;
      padding: 16px;
      border-radius: 6px;
      display: none;
    }
    .tab-panel:not([hidden]) { display: block; }



.sign-tabs-r.active {
  color: #fff !important;
  background-color: #28344A;
  font-weight: 600;
}

.sign-tabs-r {
  text-align: center;
  padding: 10px;
  border: white !important;
  width: 100%;
  color: #000;
  font-size: 15px;
  background-color: #E6E6E6;
  transition: 0.3s ease-in-out;
}
