
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background: rgba(255, 153, 0, 0.08);
  color: #444444;
  background: #FFFFFF;
}

a {
  color: #FF9900;
  text-decoration: none;
}

a:hover {
  color: #343434;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

#responseDisplay {
    display: none;
}
/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 60px;
  padding: 20px 30px;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #343434;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #FF9900;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #343434;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: rgba(255, 153, 0, 0.08);
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid rgba(52, 52, 52, 0.10);
    border-left: 1px solid rgba(52, 52, 52, 0.10);
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
  border-color: rgba(52, 52, 52, 0.10);
  background-color: #fff;
  color: rgba(52, 52, 52, 0.68);
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #343434;
  font-family: "Poppins", sans-serif;
}

.card-title span {
  color: rgba(52, 52, 52, 0.68);
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 0 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid rgba(52, 52, 52, 0.10);
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #343434;
  background-color: rgba(255, 153, 0, 0.08);
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #FF9900;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #343434;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  color: rgba(52, 52, 52, 0.68);
  font-weight: 600;
}

.breadcrumb a {
  color: rgba(52, 52, 52, 0.68);
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #343434;
}

.breadcrumb .breadcrumb-item::before {
  color: rgba(52, 52, 52, 0.68);
}

.breadcrumb .active {
  color: #343434;
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid rgba(52, 52, 52, 0.10);
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #343434;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #FF9900;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #FF9900;
  border-bottom: 2px solid #FF9900;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

@media (min-width: 1200px) {
  .logo {
    width: 280px;
  }
}

.logo img {
  max-height: 56px;
  margin-right: 6px;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #343434;
  font-family: "Nunito", sans-serif;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  padding-left: 20px;
  /* Toggle Sidebar Button */
  /* Search Bar */
}

.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  color: #343434;
}

.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}

.header .search-form {
  width: 100%;
}

.header .search-form input {
  border: 0;
  font-size: 14px;
  color: #343434;
  border: 1px solid rgba(1, 41, 112, 0.2);
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.header .search-form button i {
  color: #343434;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: #343434;
  margin-right: 25px;
  position: relative;
}

.header-nav .nav-profile {
  color: #343434;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: rgba(255, 153, 0, 0.08);
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
  width: 400px; /* or whatever width you prefer */
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: rgba(255, 153, 0, 0.08);
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: rgba(255, 153, 0, 0.08);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 996;
  transition: all 0.3s;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(52, 52, 52, 0.28) transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(52, 52, 52, 0.28);
}

@media (min-width: 1200px) {

  #main,
  #footer {
    margin-left: 300px;
  }
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(52, 52, 52, 0.68);
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #FF9900;
  transition: 0.3;
  background: rgba(255, 153, 0, 0.08);
  padding: 10px 15px;
  border-radius: 4px;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: #FF9900;
}

.sidebar-nav .nav-link.collapsed {
  color: #343434;
  background: #fff;
}

.sidebar-nav .nav-link.collapsed i {
  color: rgba(52, 52, 52, 0.68);
}

.sidebar-nav .nav-link:hover {
  color: #FF9900;
  background: rgba(255, 153, 0, 0.08);
}

.sidebar-nav .nav-link:hover i {
  color: #FF9900;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #343434;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #FF9900;
}

.sidebar-nav .nav-content a.active i {
  background-color: #FF9900;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: rgba(52, 52, 52, 0.28);
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #FF9900;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(52, 52, 52, 0.28);
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}

.dashboard .info-card h6 {
  font-size: 28px;
  color: #343434;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: #FF9900;
  background: rgba(255, 153, 0, 0.10);
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
  
  
}

/* Qaulification */

.qualification-activity .activity-item .activite-label {
    position: relative;
    margin-right: 20px; /* Space for the vertical line */
}

.qualification-activity .activity-item .activite-label::before {
    content: "";
    position: absolute;
    right: -15px; /* Adjusting this to center the line on the circle */
    top: 50%; 
    bottom: 0;
    width: 4px;
    background-color: rgba(255, 153, 0, 0.22);
    transform: translateY(-50%);
}

.qualification-activity .activity-item .activity-badge {
    z-index: 2;
    margin-left: -15px; /* Adjusting this to push the circle to the center of the line */
}


/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 153, 0, 0.22);
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item+.post-item {
  margin-top: 15px;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard .news h4 a {
  color: #343434;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: #FF9900;
}

.dashboard .news p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
  font-size: 14px;
}

.dashboard .recent-sales .table thead {
  background: rgba(255, 153, 0, 0.10);
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
  font-size: 14px;
}

.dashboard .top-selling .table thead {
  background: rgba(255, 153, 0, 0.10);
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px;
}

.iconslist .icon {
  background-color: #fff;
  border-radius: 0.25rem;
  text-align: center;
  color: #343434;
  padding: 15px 0;
}

.iconslist i {
  margin: 0.25rem;
  font-size: 2.5rem;
}

.iconslist .label {
  font-family: var(--bs-font-monospace);
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #343434;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #343434;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #343434;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
  font-size: 18px;
  font-weight: 600;
  color: #FF9900;
}

.faq .basic p {
  color: rgba(52, 52, 52, 0.68);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #FF9900;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #343434;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #FF9900;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #FF9900;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #FF9900;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #343434;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #343434;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #343434;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid rgba(52, 52, 52, 0.10);
}

.footer .copyright {
  text-align: center;
  color: #343434;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #343434;
}



/*--------------------------------------------------------------
# Home Page 
--------------------------------------------------------------*/
.image-container {
    display: flex;
    justify-content: center; /* horizontal alignment */
    align-items: center; /* vertical alignment */
}


/*--------------------------------------------------------------
# chat Page 
--------------------------------------------------------------*/
#chat3 .form-control {
border-color: transparent;
}

#chat3 .form-control:focus {
border-color: transparent;
box-shadow: inset 0px 0px 0px 1px transparent;
}

.badge-dot {
border-radius: 50%;
height: 10px;
width: 10px;
margin-left: 2.9rem;
margin-top: -.75rem;
}

/* Style for the Messages Section card */
#chat-messages-card {
        height: 400px; /* Set the desired height for the card */
        overflow-y: auto; /* Add a vertical scrollbar when content overflows */
    }
	
/* Adjust the CSS for the button */
#send-message-btn {
    /* Ensure the button stays visible */
    position: relative;
    z-index: 1;
}	

.sent-message {
    text-align: right;
}

.received-message {
    text-align: left;
}

.bg-primary {
    background-color: black; /* Adjust the color as needed */
    color: black; /* Adjust text color for better readability */
	
	
/*--------------------------------------------------------------
# Payment Allocation page 
--------------------------------------------------------------*/	
.filter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.filter-options {
    width: 35%;
    max-width: 400px;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.filter-options.small-dropdown {
    width: auto; /* Ensure it doesn't stretch to the full width */
}

.filter-options.small-dropdown select#period-select {
    width: 150px; /* Set a smaller width for the dropdown */
}

.text-center {
    text-align: center;
}

/* ==========================================================
   MY CLUB HUB / SPORTSTRAINERCONNECT MASTER THEME OVERRIDES
   Brand identity: #FF9900 | #343434 | #FFFFFF
   ========================================================== */
:root {
  --stc-orange: #FF9900;
  --stc-dark: #343434;
  --stc-white: #FFFFFF;
  --stc-orange-soft: rgba(255, 153, 0, 0.08);
  --stc-orange-light: rgba(255, 153, 0, 0.14);
  --stc-orange-medium: rgba(255, 153, 0, 0.20);
  --stc-orange-border: rgba(255, 153, 0, 0.36);
  --stc-dark-soft: rgba(52, 52, 52, 0.05);
  --stc-dark-border: rgba(52, 52, 52, 0.10);
  --stc-dark-muted: rgba(52, 52, 52, 0.68);
}

/* Global and main page background */
html,
body {
  background-color: var(--stc-white);
  color: var(--stc-dark);
}

body {
  background-image: none;
}

#main,
.main {
  min-height: calc(100vh - 60px);
  background-color: var(--stc-white);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)),
    url("../img/myclubhub_dashboard_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-attachment: fixed;
}

a {
  color: var(--stc-dark);
}

a:hover {
  color: var(--stc-orange);
}

/* Header and branding */
.header {
  height: 72px;
  padding-left: 16px;
  background-color: var(--stc-white);
  border-bottom: 1px solid var(--stc-dark-border);
  box-shadow: 0 2px 14px var(--stc-dark-soft);
}

@media (min-width: 1200px) {
  .logo {
    width: 300px;
  }
}

.logo img,
.header .logo img {
  height: 60px;
  max-height: 60px;
  max-width: 250px;
  width: auto;
  object-fit: contain;
}

.logo span {
  color: var(--stc-dark);
}

.header .toggle-sidebar-btn {
  padding-left: 10px;
  font-size: 32px;
  color: var(--stc-dark);
}

.header .toggle-sidebar-btn:hover,
.header .search-form button i:hover {
  color: var(--stc-orange);
}

.header .search-bar {
  min-width: 340px;
}

.header .search-form input,
.header .search-form select,
.search-bar select {
  width: 100%;
  min-height: 41px;
  padding: 8px 12px;
  border: 1px solid rgba(52, 52, 52, 0.17);
  border-radius: 10px;
  background-color: var(--stc-white);
  color: var(--stc-dark);
}

.header .search-form input:focus,
.header .search-form input:hover,
.header .search-form select:focus,
.search-bar select:focus {
  outline: none;
  border-color: var(--stc-orange);
  box-shadow: 0 0 0 0.18rem var(--stc-orange-light);
}

.header-nav .nav-icon,
.header-nav .nav-profile,
.header-nav .nav-profile span {
  color: var(--stc-dark);
}

.header-nav .nav-icon:hover,
.header-nav .nav-profile:hover,
.header-nav .nav-profile:hover span {
  color: var(--stc-orange);
}

.header-nav .badge-number,
.badge.bg-primary,
.badge.bg-success {
  background-color: var(--stc-orange) !important;
  color: var(--stc-white) !important;
}

.dropdown-menu {
  border: 1px solid var(--stc-dark-border);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(52, 52, 52, 0.14);
}

.dropdown-menu .dropdown-item:hover,
.header-nav .notifications .notification-item:hover,
.header-nav .messages .message-item:hover,
.header-nav .profile .dropdown-item:hover {
  background-color: var(--stc-orange-soft);
}

/* Sidebar sizing aligned to taller header */
.sidebar {
  top: 72px;
  width: 300px;
  padding: 14px 8px 26px;
  background-color: var(--stc-white);
  border-right: 1px solid var(--stc-dark-border);
  box-shadow: 3px 0 14px var(--stc-dark-soft);
  scrollbar-color: var(--stc-orange-border) transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: var(--stc-orange-border);
}

.sidebar-nav {
  padding: 0;
}

.sidebar-nav > .nav-heading {
  margin: 21px 10px 8px;
  padding: 4px 10px;
  background: transparent;
  color: var(--stc-orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  min-height: 52px;
  margin: 3px 6px;
  padding: 11px 13px;
  border-radius: 12px;
  background: var(--stc-white);
  color: var(--stc-dark);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.sidebar-nav .nav-link i,
.sidebar-nav .nav-link i.bi {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin-right: 12px;
  color: var(--stc-dark);
  font-size: 23px;
  line-height: 30px;
}

.sidebar-nav .nav-link i.bi-chevron-down {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-left: auto;
  margin-right: 0;
  font-size: 13px;
  line-height: 18px;
}

.sidebar-nav .nav-link.collapsed {
  color: var(--stc-dark);
  background: var(--stc-white);
}

.sidebar-nav .nav-link.collapsed i {
  color: var(--stc-dark);
}

.sidebar-nav .nav-link:hover {
  background: var(--stc-orange-soft);
  color: var(--stc-dark);
}

.sidebar-nav .nav-link:hover i {
  color: var(--stc-orange);
}

.sidebar-nav > .nav-item > .nav-link.active,
.sidebar-nav > .nav-item > .nav-link:not(.collapsed):not(.active) {
  background: var(--stc-dark);
  color: var(--stc-white);
  font-weight: 700;
  box-shadow: 0 5px 14px rgba(52, 52, 52, 0.13);
}

.sidebar-nav > .nav-item > .nav-link.active i,
.sidebar-nav > .nav-item > .nav-link:not(.collapsed):not(.active) i {
  color: var(--stc-orange);
}

.sidebar-nav > .nav-item > .nav-link:not(.collapsed):not(.active) i.bi-chevron-down {
  color: var(--stc-white);
}

.sidebar-nav .nav-content {
  margin: 6px 6px 12px 20px;
  padding: 5px 0 8px 9px;
  border-left: 2px solid var(--stc-orange-border);
  background: transparent;
}

.sidebar-nav .nav-content .nav-heading {
  margin: 10px 8px 6px;
  padding: 3px 8px;
  color: var(--stc-dark-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.sidebar-nav .nav-content a,
.sidebar-nav .nav-content .nav-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin: 2px 6px;
  padding: 9px 10px;
  border-radius: 9px;
  background: var(--stc-white);
  color: var(--stc-dark);
  font-size: 13px;
  font-weight: 500;
}

.sidebar-nav .nav-content a i,
.sidebar-nav .nav-content .nav-link i.bi {
  width: 26px;
  min-width: 26px;
  height: 26px;
  margin-right: 10px;
  color: var(--stc-dark);
  font-size: 20px;
  line-height: 26px;
  background: transparent;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content .nav-link:hover {
  background: var(--stc-orange-soft);
  color: var(--stc-dark);
}

.sidebar-nav .nav-content a:hover i,
.sidebar-nav .nav-content .nav-link:hover i {
  color: var(--stc-orange);
}

.sidebar-nav .nav-content a.active,
.sidebar-nav .nav-content .nav-link.active {
  padding-left: 9px;
  border-left: 4px solid var(--stc-orange);
  background: var(--stc-orange-light);
  color: var(--stc-dark);
  font-weight: 700;
}

.sidebar-nav .nav-content a.active i,
.sidebar-nav .nav-content .nav-link.active i {
  color: var(--stc-orange);
  background: transparent;
}

.sidebar-signout form {
  width: 100%;
}

.sidebar-signout .nav-link {
  width: 100%;
  border: 0;
  text-align: left;
}

.sidebar-signout .nav-link:hover {
  background: var(--stc-dark);
  color: var(--stc-white);
}

.sidebar-signout .nav-link:hover i {
  color: var(--stc-orange);
}

@media (min-width: 1200px) {
  #main,
  #footer {
    margin-left: 300px;
  }
}

#main {
  margin-top: 72px;
}

/* Titles, cards, forms and tables */
.pagetitle h1,
.card-title {
  color: var(--stc-dark);
  font-weight: 700;
}

.breadcrumb,
.breadcrumb a {
  color: var(--stc-dark-muted);
}

.breadcrumb a:hover,
.breadcrumb .active {
  color: var(--stc-orange);
}

.card {
  border: 1px solid var(--stc-dark-border);
  border-radius: 14px;
  box-shadow: 0 3px 13px var(--stc-dark-soft);
  background-color: rgba(255, 255, 255, 0.97);
}

.card-header,
.card-footer {
  border-color: var(--stc-dark-border);
  background-color: var(--stc-white);
  color: var(--stc-dark-muted);
}

.form-control,
.form-select {
  min-height: 44px;
  border: 1px solid rgba(52, 52, 52, 0.16);
  border-radius: 9px;
  color: var(--stc-dark);
  background-color: var(--stc-white);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--stc-orange);
  box-shadow: 0 0 0 0.18rem var(--stc-orange-medium);
}

.btn-primary {
  border-color: var(--stc-orange) !important;
  background-color: var(--stc-orange) !important;
  color: var(--stc-white) !important;
  font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  border-color: var(--stc-dark) !important;
  background-color: var(--stc-dark) !important;
  color: var(--stc-white) !important;
}

.btn-outline-primary,
.btn-outline-stc {
  border: 1px solid var(--stc-orange) !important;
  background: var(--stc-white) !important;
  color: var(--stc-dark) !important;
  font-weight: 600;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-stc:hover {
  border-color: var(--stc-orange) !important;
  background: var(--stc-orange-soft) !important;
  color: var(--stc-dark) !important;
}

.table-light,
.table thead th,
.dashboard .recent-sales .table thead,
.dashboard .top-selling .table thead {
  background: var(--stc-orange-soft) !important;
  color: var(--stc-dark);
}

.dashboard .info-card .card-icon,
.dashboard .sales-card .card-icon,
.dashboard .revenue-card .card-icon,
.dashboard .customers-card .card-icon {
  background: var(--stc-orange-light);
  color: var(--stc-orange);
}

.back-to-top {
  background: var(--stc-orange);
}

.back-to-top:hover {
  background: var(--stc-dark);
}

/* FAQ modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1055;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(52, 52, 52, 0.52);
}

.modal-content {
  position: relative;
  width: 80%;
  max-width: 620px;
  margin: 15% auto;
  padding: 24px;
  border: 1px solid var(--stc-orange-border);
  border-radius: 14px;
  background: var(--stc-white);
  box-shadow: 0 14px 34px rgba(52, 52, 52, 0.16);
}

.close-modal {
  position: absolute;
  top: 7px;
  right: 12px;
  padding: 8px;
  color: var(--stc-dark);
  font-size: 26px;
  cursor: pointer;
}

.close-modal:hover {
  color: var(--stc-orange);
}

/* Generic My Club Hub content and form components */
.mch-page-panel,
.add-classes-section {
  max-width: 1120px;
  margin: 0 auto 34px;
}

.mch-page-intro,
.class-page-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  padding: 19px 23px;
  border: 1px solid var(--stc-dark-border);
  border-left: 4px solid var(--stc-orange);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 3px 13px var(--stc-dark-soft);
}

.mch-page-intro h2,
.class-page-intro h2 {
  margin: 0 0 5px;
  color: var(--stc-dark);
  font-size: 21px;
  font-weight: 700;
}

.mch-page-intro p,
.class-page-intro p {
  margin: 0;
  color: var(--stc-dark-muted);
  font-size: 13px;
}

.mch-page-icon,
.class-page-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--stc-orange-light);
  color: var(--stc-orange);
  font-size: 26px;
}

.mch-content-card,
.class-form-card {
  overflow: hidden;
  border: 1px solid var(--stc-dark-border) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 3px 13px var(--stc-dark-soft) !important;
}

.mch-content-card .card-header,
.class-form-card .card-header {
  padding: 18px 23px;
  border-bottom: 1px solid var(--stc-dark-border);
  background: var(--stc-white);
}

.mch-content-card .card-header h5,
.class-form-card .card-header h5 {
  margin: 0;
  color: var(--stc-dark);
  font-size: 17px;
  font-weight: 700;
}

.mch-content-card .card-body,
.class-form-card .card-body {
  padding: 24px;
}

.mch-form-section,
.form-section {
  margin-bottom: 25px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--stc-dark-border);
}

.mch-form-section:last-of-type,
.form-section:last-of-type {
  border-bottom: none;
}

.mch-form-section-title,
.form-section-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--stc-dark);
  font-size: 15px;
  font-weight: 700;
}

.mch-form-section-title i,
.form-section-title i {
  color: var(--stc-orange);
  font-size: 19px;
}

.mch-weekday-panel,
.weekday-panel {
  margin-top: 17px;
  padding: 17px;
  border: 1px solid var(--stc-orange-border);
  border-radius: 11px;
  background: var(--stc-orange-soft);
}

.mch-weekday-options,
.weekday-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.mch-weekday-option,
.weekday-option {
  position: relative;
}

.mch-weekday-option .form-check-input,
.weekday-option .form-check-input {
  position: absolute;
  opacity: 0;
}

.mch-weekday-option .form-check-label,
.weekday-option .form-check-label {
  min-width: 82px;
  padding: 9px 13px;
  border: 1px solid var(--stc-orange-border);
  border-radius: 8px;
  background: var(--stc-white);
  color: var(--stc-dark);
  text-align: center;
  font-size: 13px;
  cursor: pointer;
}

.mch-weekday-option .form-check-input:checked + .form-check-label,
.weekday-option .form-check-input:checked + .form-check-label {
  background: var(--stc-orange);
  border-color: var(--stc-orange);
  color: var(--stc-white);
  font-weight: 700;
}

.mch-form-actions,
.class-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 10px;
}

.form-helper {
  display: block;
  margin-top: 6px;
  color: var(--stc-dark-muted);
  font-size: 12px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--stc-dark-border);
  background: var(--stc-white);
}

.footer .copyright,
.footer .credits {
  color: var(--stc-dark);
}

/* Responsive */
@media (max-width: 1199px) {
  .header {
    height: 60px;
  }

  .logo img,
  .header .logo img {
    height: 53px;
    max-height: 53px;
    max-width: 212px;
  }

  .sidebar {
    top: 60px;
  }

  #main {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  #main,
  .main {
    background-size: auto 72%;
    background-position: right bottom;
    background-attachment: scroll;
  }

  .mch-page-intro,
  .class-page-intro {
    padding: 16px;
  }

  .mch-content-card .card-body,
  .class-form-card .card-body {
    padding: 17px;
  }

  .mch-form-actions,
  .class-form-actions {
    flex-direction: column-reverse;
  }

  .mch-form-actions .btn,
  .class-form-actions .btn {
    width: 100%;
  }
}

/* ===== MY CLUB HUB HTML UTILITY PARITY: START ===== */
/*
   These rules were moved from the previously working HTML inline style block.
   They are retained in the master CSS so pages can remove the inline <style>
   block without losing header, sidebar, dashboard or utility styling.
*/
/* =========================================================
   MY CLUB HUB - SPORTSTRAINERCONNECT BRAND STYLING
   Approved Brand Colours:
   Orange     #FF9900
   Dark Grey  #343434
   White      #FFFFFF
   ========================================================= */

:root {
    --stc-orange: #FF9900;
    --stc-dark: #343434;
    --stc-white: #FFFFFF;
    --stc-orange-light: rgba(255, 153, 0, 0.10);
    --stc-orange-medium: rgba(255, 153, 0, 0.18);
    --stc-orange-border: rgba(255, 153, 0, 0.38);
    --stc-dark-light: rgba(52, 52, 52, 0.06);
    --stc-dark-medium: rgba(52, 52, 52, 0.16);
    --stc-dark-muted: rgba(52, 52, 52, 0.68);
}

/* =========================================================
   PAGE AND HEADER
   ========================================================= */

body {
    color: var(--stc-dark);
    background-color: var(--stc-white);
}

.header {
    background: var(--stc-white) !important;
    border-bottom: 1px solid var(--stc-dark-light);
    box-shadow: 0 2px 12px rgba(52, 52, 52, 0.05);
}

/* Header logo area */
.header .logo {
    width: 290px !important;
    min-width: 290px !important;
    display: flex;
    align-items: center;
    padding-left: 8px;
}

/* Use the wide transparent My Club Hub logo here */
.header .logo img {
    width: auto !important;
    height: 60px !important;
    max-height: 60px !important;
    max-width: 245px !important;
    object-fit: contain;
    display: block;
}

/* Sidebar hamburger icon */
.header .toggle-sidebar-btn {
    margin-left: 12px;
    color: var(--stc-dark) !important;
    font-size: 32px !important;
    transition: color 0.2s ease;
}

.header .toggle-sidebar-btn:hover {
    color: var(--stc-orange) !important;
}

/* Header navigation icons */
.header-nav .nav-icon,
.header-nav .nav-profile,
.header-nav .nav-profile span {
    color: var(--stc-dark) !important;
}

.header-nav .nav-icon:hover,
.header-nav .nav-profile:hover,
.header-nav .nav-profile:hover span {
    color: var(--stc-orange) !important;
}

/* Header notification counters */
.header-nav .badge-number,
.header-nav .badge.bg-primary,
.header-nav .badge.bg-success {
    background-color: var(--stc-orange) !important;
    color: var(--stc-white) !important;
}

/* =========================================================
   FAQ SEARCH BAR AND MODAL
   ========================================================= */

.search-bar select {
    min-height: 40px;
    padding: 7px 12px;
    border: 1px solid rgba(52, 52, 52, 0.18);
    border-radius: 10px;
    color: var(--stc-dark);
    background: var(--stc-white);
}

.search-bar select:focus {
    border-color: var(--stc-orange);
    outline: none;
    box-shadow: 0 0 0 0.18rem var(--stc-orange-medium);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1055;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(52, 52, 52, 0.55);
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 620px;
    margin: 15% auto;
    padding: 24px;
    border: 1px solid var(--stc-orange-border);
    border-radius: 14px;
    background-color: var(--stc-white);
    box-shadow: 0 12px 30px rgba(52, 52, 52, 0.18);
}

.close-modal {
    position: absolute;
    top: 7px;
    right: 12px;
    padding: 8px;
    color: var(--stc-dark);
    font-size: 26px;
    cursor: pointer;
}

.close-modal:hover {
    color: var(--stc-orange);
}

/* =========================================================
   SIDEBAR CONTAINER
   ========================================================= */

.sidebar {
    background: var(--stc-white) !important;
    border-right: 1px solid var(--stc-dark-light) !important;
    box-shadow: 3px 0 16px rgba(52, 52, 52, 0.04);
}

.sidebar-nav {
    padding: 14px 8px 28px;
}

/* Main sidebar section labels */
.sidebar-nav > .nav-heading {
    margin: 21px 10px 8px !important;
    padding: 4px 10px !important;
    background: transparent !important;
    color: var(--stc-orange) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
    box-shadow: none !important;
}

/* =========================================================
   MAIN SIDEBAR MENU ITEMS
   ========================================================= */

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    min-height: 54px;
    margin: 3px 6px !important;
    padding: 12px 13px !important;
    border-radius: 12px !important;
    border-left: none !important;
    background: var(--stc-white) !important;
    color: var(--stc-dark) !important;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sidebar-nav .nav-link span {
    color: inherit !important;
    line-height: 1.25;
}

/* Increased main sidebar icon size */
.sidebar-nav .nav-link i.bi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px !important;
    min-width: 31px !important;
    height: 31px !important;
    margin-right: 12px !important;
    color: var(--stc-dark) !important;
    font-size: 24px !important;
    line-height: 31px !important;
}

/* Small dropdown arrow only */
.sidebar-nav .nav-link i.bi-chevron-down {
    width: 18px !important;
    min-width: 18px !important;
    height: 18px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    color: var(--stc-dark) !important;
    font-size: 13px !important;
    line-height: 18px !important;
}

/* Menu hover */
.sidebar-nav .nav-link:hover {
    background: var(--stc-orange-light) !important;
    color: var(--stc-dark) !important;
}

.sidebar-nav .nav-link:hover i.bi {
    color: var(--stc-orange) !important;
}

/* =========================================================
   ACTIVE DASHBOARD AND OPEN PARENT MENU
   ========================================================= */

.sidebar-nav > .nav-item > .nav-link.active {
    background: var(--stc-dark) !important;
    color: var(--stc-white) !important;
    font-weight: 700 !important;
    box-shadow: 0 5px 14px var(--stc-dark-medium);
}

.sidebar-nav > .nav-item > .nav-link.active i.bi {
    color: var(--stc-orange) !important;
}

.sidebar-nav > .nav-item > .nav-link:not(.collapsed):not(.active) {
    background: var(--stc-dark) !important;
    color: var(--stc-white) !important;
    font-weight: 700 !important;
    border-left: none !important;
    box-shadow: 0 5px 14px rgba(52, 52, 52, 0.10);
}

.sidebar-nav > .nav-item > .nav-link:not(.collapsed):not(.active) i.bi {
    color: var(--stc-orange) !important;
}

.sidebar-nav > .nav-item > .nav-link:not(.collapsed):not(.active) i.bi-chevron-down {
    color: var(--stc-white) !important;
}

/* =========================================================
   SUBMENUS
   ========================================================= */

.sidebar-nav .nav-content {
    margin: 6px 6px 12px 20px !important;
    padding: 5px 0 8px 9px !important;
    border-left: 2px solid var(--stc-orange-border);
    background: transparent !important;
}

/* Submenu labels */
.sidebar-nav .nav-content .nav-heading {
    margin: 10px 8px 6px !important;
    padding: 3px 8px !important;
    background: transparent !important;
    color: var(--stc-dark-muted) !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: 0.75px !important;
    text-transform: uppercase;
    box-shadow: none !important;
}

/* Submenu links */
.sidebar-nav .nav-content .nav-link {
    min-height: 46px;
    margin: 2px 6px !important;
    padding: 10px 10px !important;
    border-radius: 9px !important;
    background: var(--stc-white) !important;
    color: var(--stc-dark) !important;
    font-size: 13px;
    font-weight: 500;
}

/* Increased submenu icon size */
.sidebar-nav .nav-content .nav-link i.bi {
    width: 27px !important;
    min-width: 27px !important;
    height: 27px !important;
    margin-right: 10px !important;
    color: var(--stc-dark) !important;
    font-size: 21px !important;
    line-height: 27px !important;
}

/* Active submenu item */
.sidebar-nav .nav-content .nav-link.active {
    padding-left: 9px !important;
    border-left: 4px solid var(--stc-orange) !important;
    background: var(--stc-orange-medium) !important;
    color: var(--stc-dark) !important;
    font-weight: 700 !important;
}

.sidebar-nav .nav-content .nav-link.active i.bi {
    color: var(--stc-orange) !important;
}

/* Submenu hover */
.sidebar-nav .nav-content .nav-link:hover {
    background: var(--stc-orange-light) !important;
    color: var(--stc-dark) !important;
}

.sidebar-nav .nav-content .nav-link:hover i.bi {
    color: var(--stc-orange) !important;
}

/* =========================================================
   PAGE TITLE AND BREADCRUMB
   ========================================================= */

.pagetitle h1 {
    color: var(--stc-dark) !important;
    font-weight: 700;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: var(--stc-dark) !important;
}

.breadcrumb-item.active {
    color: var(--stc-orange) !important;
}

/* =========================================================
   LINKS, INPUTS AND BUTTONS
   ========================================================= */

a {
    color: var(--stc-dark);
}

a:hover {
    color: var(--stc-orange);
}

.underline-hover {
    color: var(--stc-dark) !important;
    text-decoration: none !important;
    border-bottom: 1px solid var(--stc-orange) !important;
}

.underline-hover:hover {
    color: var(--stc-orange) !important;
    text-decoration: none !important;
}

.form-control,
.form-select {
    border-color: rgba(52, 52, 52, 0.16);
    color: var(--stc-dark);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--stc-orange) !important;
    box-shadow: 0 0 0 0.2rem var(--stc-orange-medium) !important;
}

/* Primary button */
.btn-primary {
    background-color: var(--stc-orange) !important;
    border-color: var(--stc-orange) !important;
    color: var(--stc-white) !important;
    font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--stc-dark) !important;
    border-color: var(--stc-dark) !important;
    color: var(--stc-white) !important;
}

/* Outline button */
.btn-outline-primary {
    background-color: var(--stc-white) !important;
    border-color: var(--stc-orange) !important;
    color: var(--stc-dark) !important;
    font-weight: 600;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--stc-orange) !important;
    border-color: var(--stc-orange) !important;
    color: var(--stc-white) !important;
}

/* Branded badges */
.badge.bg-primary {
    background-color: var(--stc-orange) !important;
    color: var(--stc-white) !important;
}

/* =========================================================
   DASHBOARD CARDS
   ========================================================= */

.card {
    border: 1px solid var(--stc-dark-light);
    border-radius: 14px;
    box-shadow: 0 3px 13px rgba(52, 52, 52, 0.05);
}

.card-title {
    color: var(--stc-dark) !important;
    font-weight: 700;
}

.dashboard .info-card .card-icon {
    background: var(--stc-orange-light) !important;
    color: var(--stc-orange) !important;
}

.dashboard .info-card .card-icon i {
    color: var(--stc-orange) !important;
}

.dashboard .info-card h4 {
    color: var(--stc-dark) !important;
    font-weight: 700;
}

.card-footer {
    border-top: 1px solid var(--stc-dark-light);
    background: var(--stc-white);
}

/* =========================================================
   CONNECTION STATUS CARD
   ========================================================= */

.stc-health-card {
    border-radius: 14px;
    border-top: 3px solid var(--stc-orange) !important;
}

.stc-status-tile {
    height: 100%;
    padding: 16px;
    border: 1px solid var(--stc-dark-light);
    border-radius: 14px;
    background: var(--stc-white);
    transition: all 0.2s ease;
}

.stc-status-tile:hover {
    border-color: var(--stc-orange-border);
    box-shadow: 0 7px 18px rgba(52, 52, 52, 0.08);
    transform: translateY(-1px);
}

.stc-status-label {
    margin-bottom: 6px;
    color: var(--stc-dark-muted);
    font-size: 12px;
}

.stc-status-label i {
    color: var(--stc-orange);
}

.stc-status-value {
    color: var(--stc-dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.stc-status-detail {
    margin-top: 8px;
    color: var(--stc-dark-muted);
    font-size: 12px;
}

.stc-health-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid var(--stc-dark-light);
}

/* Status indicator badges in the connection card */
.stc-status-tile .badge {
    background-color: var(--stc-dark) !important;
    color: var(--stc-white) !important;
}

/* =========================================================
   TABLES
   ========================================================= */

.table {
    color: var(--stc-dark);
}

.table-light,
.table thead th {
    background-color: var(--stc-orange-light) !important;
    color: var(--stc-dark) !important;
    border-color: var(--stc-dark-light);
}

.table-hover tbody tr:hover {
    background-color: var(--stc-orange-light);
}

/* =========================================================
   SIGN OUT
   ========================================================= */

.sidebar-signout form {
    width: 100%;
}

.sidebar-signout .nav-link {
    width: 100%;
    border: none !important;
    text-align: left;
    cursor: pointer;
    background: var(--stc-white) !important;
}

.sidebar-signout .nav-link:hover {
    background: var(--stc-dark) !important;
    color: var(--stc-white) !important;
}

.sidebar-signout .nav-link:hover i.bi {
    color: var(--stc-orange) !important;
}

/* =========================================================
   RESPONSIVE LOGO HANDLING
   ========================================================= */

@media (max-width: 1199px) {
    .header .logo {
        width: 255px !important;
        min-width: 255px !important;
    }

    .header .logo img {
        height: 54px !important;
        max-height: 54px !important;
        max-width: 215px !important;
    }

    .sidebar-nav .nav-link i.bi {
        font-size: 22px !important;
    }
}
/* ===== MY CLUB HUB HTML UTILITY PARITY: END ===== */

/* ===== MY CLUB HUB PAGE COMPONENT UTILITIES: START ===== */

.main,
#main {
    min-height: calc(100vh - 60px);
    background-color: #FFFFFF;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)),
        url("../img/myclubhub_dashboard_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-attachment: fixed;
}

.add-classes-section,
.mch-page-panel {
    max-width: 1120px;
    margin: 0 auto 34px;
}

.class-page-intro,
.mch-page-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    padding: 19px 23px;
    border: 1px solid rgba(52, 52, 52, 0.10);
    border-left: 4px solid #FF9900;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 3px 13px rgba(52, 52, 52, 0.05);
}

.class-page-intro h2,
.mch-page-intro h2 {
    margin: 0 0 5px;
    color: #343434;
    font-size: 21px;
    font-weight: 700;
}

.class-page-intro p,
.mch-page-intro p {
    margin: 0;
    color: rgba(52, 52, 52, 0.68);
    font-size: 13px;
}

.class-page-icon,
.mch-page-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    min-width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 153, 0, 0.10);
    color: #FF9900;
    font-size: 26px;
}

.class-form-card,
.mch-content-card {
    overflow: hidden;
    border: 1px solid rgba(52, 52, 52, 0.10) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 3px 13px rgba(52, 52, 52, 0.05) !important;
}

.class-form-card .card-header,
.mch-content-card .card-header {
    padding: 18px 23px;
    border-bottom: 1px solid rgba(52, 52, 52, 0.10);
    background: #FFFFFF;
}

.class-form-card .card-header h5,
.mch-content-card .card-header h5 {
    margin: 0;
    color: #343434;
    font-size: 17px;
    font-weight: 700;
}

.class-form-card .card-body,
.mch-content-card .card-body {
    padding: 24px;
}

.form-section,
.mch-form-section {
    margin-bottom: 25px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(52, 52, 52, 0.10);
}

.form-section:last-of-type,
.mch-form-section:last-of-type {
    border-bottom: none;
}

.form-section-title,
.mch-form-section-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: #343434;
    font-size: 15px;
    font-weight: 700;
}

.form-section-title i,
.mch-form-section-title i {
    color: #FF9900;
    font-size: 19px;
}

.weekday-panel,
.mch-weekday-panel {
    margin-top: 17px;
    padding: 17px;
    border: 1px solid rgba(255, 153, 0, 0.38);
    border-radius: 11px;
    background: rgba(255, 153, 0, 0.10);
}

.weekday-options,
.mch-weekday-options {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.weekday-option,
.mch-weekday-option {
    position: relative;
}

.weekday-option .form-check-input,
.mch-weekday-option .form-check-input {
    position: absolute;
    opacity: 0;
}

.weekday-option .form-check-label,
.mch-weekday-option .form-check-label {
    min-width: 82px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 153, 0, 0.38);
    border-radius: 8px;
    background: #FFFFFF;
    color: #343434;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
}

.weekday-option .form-check-input:checked + .form-check-label,
.mch-weekday-option .form-check-input:checked + .form-check-label {
    border-color: #FF9900;
    background: #FF9900;
    color: #FFFFFF;
    font-weight: 700;
}

.class-form-actions,
.mch-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 10px;
}

.form-helper {
    display: block;
    margin-top: 6px;
    color: rgba(52, 52, 52, 0.68);
    font-size: 12px;
}

.btn-outline-stc {
    border: 1px solid #FF9900 !important;
    background: #FFFFFF !important;
    color: #343434 !important;
    font-weight: 600;
}

.btn-outline-stc:hover {
    border-color: #FF9900 !important;
    background: rgba(255, 153, 0, 0.10) !important;
    color: #343434 !important;
}

@media (max-width: 767px) {
    .main,
    #main {
        background-size: auto 72%;
        background-attachment: scroll;
    }

    .class-page-intro,
    .mch-page-intro {
        padding: 16px;
    }

    .class-form-card .card-body,
    .mch-content-card .card-body {
        padding: 17px;
    }

    .class-form-actions,
    .mch-form-actions {
        flex-direction: column-reverse;
    }

    .class-form-actions .btn,
    .mch-form-actions .btn {
        width: 100%;
    }
}

/* ===== MY CLUB HUB PAGE COMPONENT UTILITIES: END ===== */

/* =========================================================
   MY CLUB HUB - CLUB CLASSES LIST PAGE
   ========================================================= */

.mch-list-page {
    max-width: 1380px;
    margin: 0 auto 34px;
}

.mch-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    padding: 20px 24px;
    border: 1px solid var(--stc-dark-border);
    border-left: 4px solid var(--stc-orange);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 3px 13px var(--stc-dark-soft);
}

.mch-page-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mch-page-header-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 54px;
    min-width: 54px;
    height: 54px;
    border-radius: 13px;
    background: var(--stc-orange-light);
    color: var(--stc-orange);
    font-size: 27px;
}

.mch-page-header h2 {
    margin: 0 0 5px;
    color: var(--stc-dark);
    font-size: 22px;
    font-weight: 700;
}

.mch-page-header p {
    margin: 0;
    color: var(--stc-dark-muted);
    font-size: 13px;
}

.mch-page-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mch-summary-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 8px 14px;
    border: 1px solid var(--stc-orange-border);
    border-radius: 22px;
    background: var(--stc-orange-soft);
    color: var(--stc-dark);
    font-size: 13px;
    font-weight: 600;
}

.mch-summary-pill i {
    color: var(--stc-orange);
    font-size: 17px;
}

.mch-table-card {
    overflow: hidden;
    border: 1px solid var(--stc-dark-border) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 3px 13px var(--stc-dark-soft) !important;
}

.mch-table-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--stc-dark-border);
    background: var(--stc-white);
}

.mch-table-card .card-header h5 {
    margin: 0 0 4px;
    color: var(--stc-dark);
    font-size: 17px;
    font-weight: 700;
}

.mch-table-card .card-header h5 i {
    margin-right: 7px;
    color: var(--stc-orange);
}

.mch-table-card .card-header p {
    margin: 0;
    color: var(--stc-dark-muted);
    font-size: 12px;
}

.mch-table-card .card-body {
    padding: 0;
}

.mch-table-wrapper {
    padding: 16px 18px 18px;
}

.mch-table {
    width: 100%;
    margin-bottom: 0;
    vertical-align: middle;
}

.mch-table thead th {
    padding: 13px 12px !important;
    border-bottom: 1px solid var(--stc-orange-border) !important;
    background: var(--stc-orange-soft) !important;
    color: var(--stc-dark) !important;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.35px;
}

.mch-table tbody td {
    padding: 14px 12px !important;
    border-bottom: 1px solid var(--stc-dark-border);
    color: var(--stc-dark);
    font-size: 13px;
    vertical-align: middle;
}

.mch-table tbody tr:hover {
    background: rgba(255, 153, 0, 0.04);
}

.mch-class-name {
    margin-bottom: 4px;
    color: var(--stc-dark);
    font-size: 14px;
    font-weight: 700;
}

.mch-class-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--stc-dark-muted);
    font-size: 11px;
}

.mch-class-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.mch-class-type {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 16px;
    background: var(--stc-orange-soft);
    color: var(--stc-dark);
    font-size: 12px;
    font-weight: 600;
}

.mch-difficulty {
    display: block;
    margin-top: 4px;
    color: var(--stc-dark-muted);
    font-size: 12px;
}

.mch-schedule-time {
    color: var(--stc-dark);
    font-weight: 600;
    white-space: nowrap;
}

.mch-schedule-detail {
    display: block;
    margin-top: 4px;
    color: var(--stc-dark-muted);
    font-size: 12px;
}

.mch-money {
    font-weight: 700;
    white-space: nowrap;
}

.mch-capacity {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.mch-capacity i {
    color: var(--stc-orange);
}

.mch-days {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    min-width: 185px;
}

.mch-day-tag {
    display: inline-block;
    padding: 3px 7px;
    border: 1px solid var(--stc-orange-border);
    border-radius: 12px;
    background: var(--stc-white);
    color: var(--stc-dark);
    font-size: 11px;
    font-weight: 600;
}

.mch-empty-value {
    color: var(--stc-dark-muted);
    font-size: 12px;
}

.mch-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 7px 12px !important;
    border: 1px solid var(--stc-orange) !important;
    border-radius: 8px !important;
    background: var(--stc-white) !important;
    color: var(--stc-dark) !important;
    font-size: 12px !important;
    font-weight: 650 !important;
    white-space: nowrap;
}

.mch-action-btn i {
    color: var(--stc-orange);
}

.mch-action-btn:hover {
    border-color: var(--stc-orange) !important;
    background: var(--stc-orange) !important;
    color: var(--stc-white) !important;
}

.mch-action-btn:hover i {
    color: var(--stc-white);
}

.mch-empty-state {
    padding: 58px 24px;
    text-align: center;
}

.mch-empty-state i {
    display: block;
    margin-bottom: 12px;
    color: var(--stc-orange);
    font-size: 42px;
}

.mch-empty-state h5 {
    margin-bottom: 6px;
    color: var(--stc-dark);
    font-weight: 700;
}

.mch-empty-state p {
    margin-bottom: 18px;
    color: var(--stc-dark-muted);
    font-size: 13px;
}

/* Simple Datatables alignment */
.mch-table-card .dataTable-top,
.mch-table-card .datatable-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 0 0 16px;
}

.mch-table-card .dataTable-input,
.mch-table-card .datatable-input,
.mch-table-card .dataTable-selector,
.mch-table-card .datatable-selector {
    min-height: 39px;
    border: 1px solid rgba(52, 52, 52, 0.16);
    border-radius: 8px;
    color: var(--stc-dark);
    background: var(--stc-white);
}

.mch-table-card .dataTable-input:focus,
.mch-table-card .datatable-input:focus {
    border-color: var(--stc-orange);
    outline: none;
    box-shadow: 0 0 0 0.16rem var(--stc-orange-light);
}

.mch-table-card .dataTable-bottom,
.mch-table-card .datatable-bottom {
    padding-top: 16px;
}

.mch-table-card .dataTable-pagination a,
.mch-table-card .datatable-pagination a {
    border-radius: 7px;
    color: var(--stc-dark);
}

.mch-table-card .dataTable-pagination .active a,
.mch-table-card .datatable-pagination .active a {
    background: var(--stc-orange);
    color: var(--stc-white);
}

@media (max-width: 991px) {
    .mch-page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .mch-page-header-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .mch-page-header {
        padding: 16px;
    }

    .mch-page-header-content {
        align-items: flex-start;
    }

    .mch-page-header-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mch-page-header-actions .btn,
    .mch-summary-pill {
        width: 100%;
        justify-content: center;
    }

    .mch-table-wrapper {
        padding: 12px;
    }
}
