.title-2 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
    padding-left: 10px;
    position: relative;
}

.ltn__myaccount-tab-content-inner > p {
    padding: 30px;
    background-color: #F2F6F7;
    color: #56595a;
    font-size: 16px;
    margin-bottom: 40px;
}

h4, .h4 {
    color: #2d2d83;
    clear: both;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.title-2 i {
    margin-right: 8px;
    color: #2d2d83;
}

/* Breadcrumb Navigation */
.my-bc-nav {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #d0eaff, #f0f8ff);
    padding: 8px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow-x: auto; /* horizontal scroll for small screens */
}

.my-bc-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap; /* allow wrapping on mobile */
    gap: 6px;        /* spacing between items */
}

.my-bc-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: normal; /* ensure non-active items are normal */
    color: #666;
    transition: transform 0.2s ease;
}

/* Separator */
.my-bc-item + .my-bc-item::before {
    content: "\f105"; /* Font Awesome angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin: 0 10px;
    color: #555;
    opacity: 0.6;
}

.my-bc-item a {
    text-decoration: none;
    color: #0056b3;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: normal; /* override inherited bold */
    transition: background 0.25s ease, color 0.25s ease;
}

.my-bc-item a:hover {
    background: rgba(0, 123, 255, 0.15);
    color: #003f80;
    transform: translateY(-1px);
}

.my-bc-active {
    color: #002b5c;
    font-weight: bold; /* keep active item bold */
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.my-bc-active i {
    color: #002b5c;
}

/* Optional: hide scrollbar on desktop */
@media (min-width: 769px) {
    .my-bc-nav::-webkit-scrollbar {
        display: none;
    }
}

 /* Css  for Tab */
	
	/* Tab buttons */
    .tab-buttons {
        display: flex;
        background: #dbdbdb;
        border: 1px solid #ddd;
        border-radius: 4px 4px 0 0;
        overflow: hidden;
    }

    .tab-buttons button {
        flex: 1;
        padding: 14px 18px;
        cursor: pointer;
        border: none;
        background: transparent;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-bottom: 3px solid #565656;
    }

    .tab-buttons button:hover {
        background: #f0f4ff;
    }

    .tab-buttons button.active {
        background: linear-gradient(135deg, #4285f4, #5ab0ff);
        color: #fff;
        font-weight: 600;
        border-bottom: 3px solid #4985FC;
    }

    .tab-buttons button:not(:last-child) {
        border-right: 1px solid #565656;
    }

	/* Tab buttons1 */
	.tab-buttons1 {
		display: flex;
		background: #dbdbdb;
		border: 1px solid #ddd;
		border-radius: 4px 4px 0 0;
		overflow: hidden;
	}

	.tab-buttons1 button {
		flex: 1;
		padding: 14px 18px;
		cursor: pointer;
		border: none;
		background: transparent;
		font-size: 16px;
		font-weight: 500;
		transition: all 0.3s ease;
		border-bottom: 3px solid transparent;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		border-bottom: 3px solid #565656;
	}

	.tab-buttons1 button:hover {
		background: #f0f4ff;
	}

.tab-buttons1 button.active {
    background: linear-gradient(135deg, #4285f4, #5ab0ff);
    color: #fff;
    font-weight: 600;
    border-bottom: 3px solid #4985FC;
}

.tab-buttons1 button:not(:last-child) {
    border-right: 1px solid #565656;
}

    /* Tab content */
    .tab-content, .tab-content1 {
        padding: 30px;
        border: 1px solid #ddd;
        border-top: none;
        display: none;
        animation: fadeIn 0.4s ease-in-out;
		background: #fff; /* bg putih */
    }

    .tab-content.active, .tab-content1.active  {
        display: block;
    }


    .tab-content h2, .tab-content1 h2 {
        margin-bottom: 12px;
        color: #333;
    }

    .tab-content p, .tab-content1 p  {
        color: #555;
		background: #fff;
        line-height: 1.6;
    }

    @keyframes fadeIn {
        from {opacity: 0; transform: translateY(10px);}
        to {opacity: 1; transform: translateY(0);}
    }
	
	
.tab-content, .tab-content1, .tab-content2 {
    padding: 30px;
    border: 1px solid #ddd;
    border-top: none;
    display: none;
    animation: fadeIn 0.4s ease-in-out;
    background: #fff;
}

.tab-content.active, .tab-content1.active, .tab-content2.active {
    display: block;
}


.info {
    padding: 30px;
    background-color: #F2F6F7; /* Light grey-blue background */
    color: #56595a;            /* Dark grey text */
    font-size: 16px;
    margin-bottom: 40px;
}

.info p {
    font-size: 16px;
    margin-bottom: 0px;
}

.tab-container {
    padding: 30px;
    background-color: #F2F6F7; /* Light grey-blue background */
    color: #56595a;            /* Dark grey text */
    font-size: 16px;
    margin-bottom: 40px;
}

.tab-container p {
    font-size: 16px;
    margin-bottom: 0px;
}

.tab-container ul {
    list-style-type: disc;
    margin-left: 30px;
    padding-left: 10px;
	font-weight: normal;
}
	
.tab-container ol ol {
    list-style-type: lower-roman;
    margin-left: 30px; /* extra indent for nested */
    padding-left: 10px;
	font-weight: normal;
}
	
.tab-container ol {
    list-style-type: decimal;
    margin-left: 30px;
    padding-left: 10px;
	font-weight: normal;
}

.tab-content ol {
    list-style-type: decimal;
    margin-left: 30px;
    padding-left: 10px;
	font-weight: normal;
}

.tab-content ol ol {
    list-style-type: lower-roman;
    margin-left: 30px; /* extra indent for nested */
    padding-left: 10px;
	font-weight: normal;
}

.tab-content ul {
    list-style-type: disc;
    margin-left: 30px;
    padding-left: 10px;
	font-weight: normal;
}
	
.info ul {
    list-style-type: disc;
    margin-left: 30px;
    padding-left: 10px;
	font-weight: normal;
}
	
.info ol ol {
    list-style-type: lower-roman;
    margin-left: 30px; /* extra indent for nested */
    padding-left: 10px;
	font-weight: normal;
}
	
.info ol {
    list-style-type: decimal;
    margin-left: 30px;
    padding-left: 10px;
	font-weight: normal;
}

.tab-content ul ul {
    margin-left: 30px; /* nested bullet indent */
}

.tab-content li {
    margin-bottom: 8px;
}

.tab-content ul li,
.tab-content1 ul li,
.tab-content2 ul li,
.info ul li,
.tab-container ul li {
    font-weight: normal;
}

.navigator{
   padding-bottom: 50px;
}

.general-notes {
    margin-top: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #e8f4ff, #f4faff);
    border: 1px solid #dcdcdc;   /* Light gray border */
    border-left: 6px solid #2d6cdf; /* Blue accent border */
    border-radius: 10px;
    font-size: 16px;
    color: #003366;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.general-notes:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.general-notes h4 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #1d3f91;
    display: flex;
    align-items: center;
    gap: 8px;
}

.general-notes i {
    color: #2d6cdf;
    font-size: 22px;
}

.tab-content1 h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1d3f91;
  margin: 25px 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;   /* <-- allow content to wrap to next line */
  word-break: break-word;
}

.tab-content1 h5 i {
  color: #2d6cdf;
  font-size: 18px;
}

.tab-content1 ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.tab-content1 ul li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.tab-content2 h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1d3f91;
  margin: 25px 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;   /* <-- allow content to wrap to next line */
  word-break: break-word;
}

.tab-content2 h5 i {
  color: #2d6cdf;
  font-size: 18px;
}

.tab-content2 ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.tab-content2 ul li {
  margin-bottom: 6px;
  line-height: 1.6;
}
	
/* Hide dropdown on desktop */
.tab-dropdown {
  width: 100%;
  max-width: 100%;
  padding: 5px 15px 5px 15px !important;
  font-size: 16px;
  font-weight: 500;
  color: #56595a;
  border: 3px solid #ddd;
  border-radius: 5px;
  background: #fff url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center;
  background-size: 20px;
  appearance: none;     /* remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: none;
}

.tab-dropdown option {
  font-size: 16px;
  color: #56595a;
  background: #fff;
  padding: 5px 15px 5px 15px !important;
}

/* Hover effect */
.tab-dropdown:hover {
  border-color: #5ab0ff;
  box-shadow: 0 0 6px rgba(90, 176, 255, 0.5);
}

/* Focus effect */
.tab-dropdown:focus {
  outline: none;
  border-color: #2a6de0;
  box-shadow: 0 0 8px rgba(42, 109, 224, 0.6);
}

@media (max-width: 768px) {
  .tab-buttons { display: none; }   /* hide the tab buttons row */
  .tab-dropdown { 
    display: block;                 /* show the dropdown */
    width: 100%;                    /* make it full width */
    padding: 0px;                   /* remove any padding */
  }
	
  .tab-container {
	padding: 0px;
	padding-bottom: 20px;
	background-color: #FFF;
	color: #56595a;
	font-size: 16px;
	margin-bottom: 40px;
  }
	
  .title-2 {
    font-size: 20px;
 }
	
 h3 {
   font-size: 22px;
 }
	
.tab-content1 h5,
.tab-content2 h5 {
    font-size: 16px;
}

.tab-content1 h5 i,
.general-notes h4 i {
    display: none;
}

.general-notes h4 {
    font-size: 18px;
}

}