﻿.tab-container {
  margin-top: 20px;
}

.tab-buttons {
  display: block;
  /* Darker divider for ≥3:1 non-text contrast */
  border-bottom: 1px solid #8a8a8a; /* was #ccc */
}

.tab-btn {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #ffffff;
  border: none;
  border-right: 0.5px solid #8a8a8a;
  /* Darker separator for ≥3:1 */
  
  font-weight: bold;
  /* Safe text contrast on #f0f0f0 and #fff */
  color: #8a8a8a;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.tab-btn.active {
  background-color: #fff;
  border: none;
  color: #1A205A; font-weight: 800;
  border-right: 0.5px solid #8a8a8a;
  border-bottom: 3px solid #1A205A;
}
.tab-btn:hover {
  background-color: #e0e0e0;
}
.tab-btn::before {
  transition: opacity 0.7s ease;
  opacity: 0;
}

.tab-btn.active::before {
  opacity: 1;
}


.tab-content {
  display: none;
  padding: 15px;
  /* Darker border for ≥3:1 non-text contrast */
  border: 0.5px solid #8a8a8a; /* was #ccc */
  border-top: none;
  background-color: #ffffff;
  color: #333;
}

.tab-content.active {
  display: block;
}


/* Body Container for left annd right padding*/
.body-container
{
	padding: 0 !important;
	margin: 0 !important;
}