@charset "UTF-8";
/* base */
* {
  box-sizing: border-box;
}

body, html {
  height: 100%;
  margin: 0;
}

/* page */
body.login-page {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #fff;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* ========== BACKGROUND SLIDER ========== */
.bg-slider {
  position: fixed; /* keep it fixed behind everything */
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  z-index: 0;
  pointer-events: none; /* clicks pass through */
  overflow: hidden;
}

/* each slide covers full area */
.bg-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

/* active slide visible */
.bg-slide.active {
  opacity: 1;
}

/* ========== CONTENT ========== */
.login-container {
  position: relative;
  z-index: 2; /* above bg slider */
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* gradient overlay on right side (keeps background visible but darker) */
.login-container::after {
  content: "";
  position: absolute;
  right: -130px;
  top: 0;
  height: 100%;
  width: 52%;
  background: linear-gradient(120deg, rgba(10, 20, 40, 0.9), rgba(15, 25, 60, 0.8), rgba(20, 30, 70, 0.6), rgba(25, 40, 90, 0));
  z-index: 1; /* below content, above slider */
  pointer-events: none;
}

.login-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

/* left text */
.left-text {
  flex: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 100px 100px 5px;
  transform: translateY(-30px);
}

.left-text .logo {
  width: 140px;
  margin-bottom: 40px;
}

.left-text h4 {
  letter-spacing: 2px;
  font-weight: 400;
  font-size: 21px;
  font-family: "Poppins", sans-serif;
  margin: 0 0 10px;
  position: relative;
  top: 130px;
}

.left-text h1 {
  font-weight: 700;
  font-size: 38px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  line-height: 1.2;
  max-width: 585px;
  position: relative;
  top: 100px;
}

.left-text p {
  font-weight: 300;
  font-size: 25px;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  letter-spacing: 1px;
  opacity: 0.95;
  position: relative;
  top: 59px;
}

.footer-left-login {
  position: absolute;
  bottom: 2px;
  left: 5px;
  font-weight: 300;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

/* right login box */
.login-box {
  width: 440px;
  padding: 40px;
  border-radius: 12px;
  color: #fff;
  z-index: 2;
  position: relative;
}

.login-box h2 {
  text-align: left;
  font-size: 30px;
  font-weight: 400;
  font-family: "Onest", sans-serif;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #ddd;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: transparent;
  color: #fff;
}

.username-wrapper {
  position: relative;
  width: 100%;
}
.username-wrapper input {
  width: 100%;
  padding: 8px 40px 8px 0;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  outline: none;
  transition: 0.3s ease;
}
.username-wrapper input:focus {
  border-bottom-color: #ccc;
}
.username-wrapper .people-icon {
  width: 22px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.6;
  transition: 0.2s ease;
}
.username-wrapper .people-icon:hover {
  opacity: 1;
}
@media (max-width: 480px) {
  .username-wrapper input {
    font-size: 14px;
    padding-right: 36px;
  }
  .username-wrapper .people-icon {
    width: 20px;
    right: 8px;
  }
}
@media (max-width: 768px) {
  .username-wrapper input {
    font-size: 15px;
    padding-right: 38px;
  }
  .username-wrapper .people-icon {
    width: 21px;
    right: 9px;
  }
}

.password-wrapper {
  position: relative;
  width: 100%;
}
.password-wrapper input {
  width: 100%;
  padding: 8px 40px 8px 0;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  outline: none;
  transition: 0.3s ease;
}
.password-wrapper input:focus {
  border-bottom-color: #ccc;
}
.password-wrapper .eye-icon {
  width: 22px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.6;
  transition: 0.2s ease;
}
.password-wrapper .eye-icon:hover {
  opacity: 1;
}
@media (max-width: 480px) {
  .password-wrapper input {
    font-size: 14px;
    padding-right: 36px;
  }
  .password-wrapper .eye-icon {
    width: 20px;
    right: 8px;
  }
}
@media (max-width: 768px) {
  .password-wrapper input {
    font-size: 15px;
    padding-right: 38px;
  }
  .password-wrapper .eye-icon {
    width: 21px;
    right: 9px;
  }
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.form-options label {
  font-size: 14px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.form-options label input[type=checkbox] {
  width: 20px;
  height: 20px;
  appearance: none;
  cursor: pointer;
  border: 2px solid #fff;
  border-radius: 4px;
  background: transparent;
  position: relative;
}
.form-options label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-options a {
  font-size: 13px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #00B0FF;
  text-decoration: none;
  transition: 0.3s;
}
.form-options a:hover {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 480px) {
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .form-options a {
    font-size: 13px;
  }
  .form-options label {
    font-size: 13px;
  }
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-options {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 25px;
  color: #ccc;
}

.btn-login {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #232294, #7D57E5);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 700;
  font-family: "Onest", sans-serif;
}

.btn-login:hover {
  background: linear-gradient(90deg, #5a57f9, #4b6df9);
}

.signup-text {
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Onest", sans-serif;
}

.signup-text a {
  color: #00B0FF;
  text-decoration: none;
}

.social-links {
  margin-top: 50px;
  text-align: center;
}

.social-links .icons {
  display: flex;
  gap: 10px;
}

.social-links .icons a {
  color: #000;
  font-size: 18px;
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  left: 80px;
}

/* responsive */
@media (max-width: 992px) {
  .login-container::after {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
  }
  .login-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .left-text {
    padding: 40px 20px;
    transform: none;
  }
  .left-text h1 {
    font-size: 30px;
  }
  .login-box {
    width: 90%;
    max-width: 400px;
    margin-top: 30px;
  }
}
/* ===== Global ===== */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background-color: #f5f6fa;
  color: #333;
}

.dashboard-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== Header ===== */
.header {
  background-color: #FFFFFF;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  border-bottom: 1px solid #DCDDE2;
}

.header-left {
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.header-left .logo {
  width: 90px;
  height: auto;
  border-right: 1px solid #CECECE;
  padding-right: 10px;
  margin-right: 26px;
}

.header-left h1 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #141414;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.notification-icon {
  font-size: 22px;
  cursor: pointer;
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1C2136;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  border-left: 1px solid #CECECE;
  padding-left: 15px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #1C2136;
}

.signout-btn {
  background-color: #FFFFFF;
  border: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
}

.signout-btn:hover {
  background-color: #FFFFFF;
}

/* Layout wrapper */
.main-layout {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
}

/* ===== Sidebar ===== */
.sidebar {
  width: 280px;
  background-color: #ffffff;
  color: #111111;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  overflow-y: auto;
}
.sidebar nav {
  flex: 1;
}
.sidebar nav a {
  display: flex;
  align-items: center;
  gap: 10px; /* spacing between icon and text */
  padding: 12px 10px;
  text-decoration: none;
  color: #111111;
  border-radius: 8px;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}
.sidebar nav a.active, .sidebar nav a:hover {
  background: linear-gradient(135deg, #2F2B83, #7D57E5);
  color: #fff;
}
.sidebar {
  /* ===== Parent Menu ===== */
}
.sidebar .menu-group {
  margin-top: 10px;
}
.sidebar .menu-group .menu-parent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #111111;
  padding: 12px 10px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.sidebar .menu-group .menu-parent:hover {
  background: #f4f4f4;
}
.sidebar .menu-group .menu-parent .menu-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.sidebar .menu-group .menu-parent {
  /* Dropdown arrow */
}
.sidebar .menu-group .menu-parent::after {
  content: "▾";
  position: absolute;
  right: 10px;
  transition: transform 0.3s ease;
}
.sidebar .menu-group {
  /* When open */
}
.sidebar .menu-group.open .menu-parent::after {
  transform: rotate(180deg);
}
.sidebar .menu-group.open .menu-children {
  display: block;
}
.sidebar .menu-group {
  /* ===== Child Menu ===== */
}
.sidebar .menu-group .menu-children {
  display: none;
  margin-left: 15px;
  margin-top: 5px;
  margin-bottom: 10px;
}
.sidebar .menu-group .menu-children a {
  font-size: 0.9rem;
  padding: 8px 12px;
  color: #555;
  border-radius: 6px;
}
.sidebar .menu-group .menu-children a:hover {
  background: rgba(47, 43, 131, 0.1);
  color: #2F2B83;
}
.sidebar {
  /* ===== Scrollbar (optional) ===== */
}
.sidebar::-webkit-scrollbar {
  width: 6px;
}
.sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.sidebar {
  /* ===== Sidebar Footer (User Guide) ===== */
}
.sidebar .sidebar-footer {
  padding-top: 15px;
  margin-top: 10px;
}
.sidebar .sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111111;
  padding: 15px;
  border-top: 1px solid #CECECE;
  padding-top: 10px;
  margin-top: -10px;
  border-bottom: 1px solid #CECECE;
  padding-bottom: 10px;
  margin-bottom: 9px;
}
.sidebar .sidebar-footer a:hover {
  background-color: #F7F7FF;
  color: #2F2B83;
}
.sidebar .sidebar-footer a .info-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}
.sidebar .sidebar-footer a .footer-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.sidebar .sidebar-footer a .footer-text .footer-title {
  font-weight: 400;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #6557E5;
}
.sidebar .sidebar-footer a .footer-text .footer-subtitle {
  font-weight: 400;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #D1D1D1;
  margin: -4px 0 0;
}

/* ===== Main Content ===== */
.content {
  flex: 1;
  padding: 30px 40px;
}

.welcome h2 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.welcome p {
  color: #667085;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.card h3 {
  color: #667085;
  margin-bottom: 10px;
}

.card p {
  font-size: 1.8rem;
  font-weight: 600;
  color: #101828;
}

/* ===== Footer ===== */
.footer {
  background-color: #FFFFFF;
  color: #040404;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  flex-wrap: wrap;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.1607843137);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 70px;
  height: auto;
}

.footer a {
  color: #040404;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-right p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-left, .footer-right {
    justify-content: center;
  }
}
/* ===== Responsive ===== */
@media (max-width: 768px) {
  .main-layout {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    display: flex;
    justify-content: space-around;
  }
  .content {
    padding: 20px;
  }
  .header-left h1 {
    font-size: 1rem;
  }
}
/* ===== Dashboard Banner Styling ===== */
.page-banner {
  position: relative;
  width: calc(100% + 100px); /* 🔹 make it wider to reach right edge */
  height: 260px;
  margin: -30px auto 40px;
  left: -40px; /* 🔹 keeps it aligned left with slight overlap */
  background: url("../img/Header BG.png") center center/cover no-repeat;
  display: flex;
  align-items: flex-start; /* move content to the top */
  justify-content: flex-start; /* keep it aligned to the left */
  padding: 30px 60px;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

/* Optional soft overlay */
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.banner-content h1 {
  font-size: 20px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
  margin: 0;
}

.banner-content p {
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.breadcrumbs {
  margin-top: 6px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
  position: absolute;
  bottom: -60px;
  right: 256px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.last-login {
  position: absolute;
  bottom: 90px;
  right: 40px;
  font-size: 12px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  opacity: 0.9;
  color: #fff;
  z-index: 3;
}

/* ===== White Box Overlapping the Banner ===== */
.training-form-box {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 40px 50px;
  width: 100%;
  margin: -100px auto 80px;
  z-index: 10;
}

/* ===== Form Layout ===== */
.training-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 30px;
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-header {
  font-family: "Poppins", sans-serif;
  color: #202324;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
}
.form-header h2 {
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  position: relative;
  right: 45px;
  color: #111111;
}

.form-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.form-subtitle .logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.form-subtitle p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: #202324;
}

.form-header-subtitle {
  font-size: 20px;
  font-weight: 700;
  font-family: "Onest", sans-serif;
  color: #202324;
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group.half {
  flex: 1 1 calc(50% - 15px);
}

.form-group.full {
  flex: 1 1 100%;
}

.training-form label {
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Onest", sans-serif;
  color: #202324;
}

.training-form input,
.training-form select,
.training-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Onest", sans-serif;
  color: #202324;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #ccc;
  margin-bottom: 8px;
  font-family: "Onest", sans-serif;
}
.form-group input[type=file] {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  background-color: #fff;
  font-family: "Onest", sans-serif;
  cursor: pointer;
}
.form-group input[type=file]:hover {
  border-color: #4B6DF9;
}
.form-group input[type=file]::file-selector-button {
  background-color: #4B6DF9;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}
.form-group input[type=file]::file-selector-button:hover {
  background-color: #3558e0;
}
.form-group input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #4B6DF9;
  cursor: pointer;
}

/* ===== Buttons ===== */
.form-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.form-buttons .right-buttons {
  display: flex;
  gap: 12px;
}

.form-buttons button {
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.btn-back {
  background: #A7BACF;
  color: #FFFFFF;
  border-color: #A7BACF;
}

.btn-draft {
  background: transparent;
  border: 2px solid #27A4EE; /* ✅ full border definition */
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-draft:hover {
  background: #27A4EE;
  color: #fff;
}

.btn-submit {
  background: #27A4EE;
  color: #fff;
  border-color: #27A4EE;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
  .form-group.half {
    flex: 1 1 100%;
  }
  .form-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .form-buttons .right-buttons {
    flex-direction: column;
  }
  .form-buttons button {
    width: 100%;
  }
}
.dashboard3-wrapper {
  position: relative;
  background: #fff;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  width: 105%;
  max-width: 1300px;
  margin: -120px auto 120px;
  padding: 50px 40px;
  z-index: 5;
  border-radius: 10px;
  right: 24px;
}
.dashboard3-wrapper .dashboard3-container {
  display: flex;
  gap: 30px;
  background: transparent;
}
.dashboard3-wrapper .profile-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 340px;
}
.dashboard3-wrapper .profile-section .profile-header-card {
  position: relative;
  background: url("../img/BG User header.png") no-repeat center center;
  border-radius: 12px;
  padding: 30px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 180%;
  max-width: 520px;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  right: 20px;
}
.dashboard3-wrapper .profile-section .profile-header-card .profile-header-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.dashboard3-wrapper .profile-section .profile-header-card .profile-photo {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff;
}
.dashboard3-wrapper .profile-section .profile-header-card .profile-text {
  text-align: left;
}
.dashboard3-wrapper .profile-section .profile-header-card .profile-text .welcome {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  opacity: 0.9;
  margin: 0 0 3px;
}
.dashboard3-wrapper .profile-section .profile-header-card .profile-text .profile-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.dashboard3-wrapper .profile-section .profile-header-card .profile-text .profile-role {
  font-size: 13px;
  margin: 0;
  opacity: 0.9;
}
.dashboard3-wrapper .profile-section .profile-header-card .profile-text .profile-grade {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 5px;
}
.dashboard3-wrapper .profile-section .profile-details-card {
  background: #fff;
  padding: 8px 0;
  margin-top: 20px;
  width: 100%;
  max-width: 340px;
  box-sizing: border-box;
  align-self: flex-start;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  position: relative;
  right: 20px;
}
.dashboard3-wrapper .profile-section .profile-details-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px auto;
  list-style: none;
  margin: 0;
  padding: 0;
}
.dashboard3-wrapper .profile-section .profile-details-card li {
  color: #111111;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  white-space: nowrap;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.dashboard3-wrapper .profile-section .profile-details-card li strong {
  color: #111111;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
@media (max-width: 768px) {
  .dashboard3-wrapper .profile-section .profile-details-card {
    max-width: 100%;
  }
  .dashboard3-wrapper .profile-section .profile-details-card ul {
    grid-template-columns: 1fr;
  }
}
.dashboard3-wrapper .main3-section {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 150px;
}
.dashboard3-wrapper .main3-section .calendar-section {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  left: 28px;
}
.dashboard3-wrapper .main3-section .calendar-section h3 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}
.dashboard3-wrapper .main3-section .calendar-section .tab3-nav {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
  gap: 10px;
}
.dashboard3-wrapper .main3-section .calendar-section .tab3-nav .tab3-link {
  background: none;
  border: none;
  padding: 12px 20px;
  color: #979797;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.dashboard3-wrapper .main3-section .calendar-section .tab3-nav .tab3-link:hover {
  color: #6557E5;
}
.dashboard3-wrapper .main3-section .calendar-section .tab3-nav .tab3-link.active {
  color: #000000;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.dashboard3-wrapper .main3-section .calendar-section .tab3-nav .tab3-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: #6557E5;
  border-radius: 2px;
}
.dashboard3-wrapper .main3-section .calendar-section .tab3-content {
  display: none;
}
.dashboard3-wrapper .main3-section .calendar-section .tab3-content.active {
  display: block;
}
.dashboard3-wrapper .main3-section .calendar-section .calendar-box {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.dashboard3-wrapper .main3-section .calendar-section .calendar-box .calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.dashboard3-wrapper .main3-section .calendar-section .calendar-box .calendar-header button {
  background: #27a4ee;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.dashboard3-wrapper .main3-section .calendar-section .calendar-box .calendar-header button:hover {
  background: rgb(16.4892703863, 137.7339055794, 209.5107296137);
}
.dashboard3-wrapper .main3-section .calendar-section .calendar-box .calendar-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}
.dashboard3-wrapper .main3-section .calendar-section .calendar-box .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}
.dashboard3-wrapper .main3-section .calendar-section .calendar-box .calendar-day {
  padding: 10px;
  border-radius: 8px;
  background: #f8f8f8;
  color: #333;
  font-weight: 500;
}
.dashboard3-wrapper .main3-section .calendar-section .calendar-box .calendar-day.today {
  background: #27a4ee;
  color: #fff;
  font-weight: 600;
}
.dashboard3-wrapper .main3-section .calendar-section .remarks3-box {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}
.dashboard3-wrapper .main3-section .calendar-section .remarks3-box ul {
  margin: 0;
  padding-left: 20px;
}
.dashboard3-wrapper .main3-section .calendar-section .remarks3-box ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
}
.dashboard3-wrapper .main3-section .calendar-section .remarks3-box ul li strong {
  color: #1C2136;
}
.dashboard3-wrapper .white3-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  width: 100%;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.dashboard3-wrapper .white3-box .stats4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 992px) {
  .dashboard3-wrapper .white3-box .stats4-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .dashboard3-wrapper .white3-box .stats4-grid {
    grid-template-columns: 1fr;
  }
}
.dashboard3-wrapper .white3-box .stats4-card {
  background: #f9f9f9;
  padding: 25px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  text-align: left;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}
.dashboard3-wrapper .white3-box .stats4-card .icon-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
}
.dashboard3-wrapper .white3-box .stats4-card .icon-badge img {
  width: 40px;
  height: 40px;
}
.dashboard3-wrapper .white3-box .stats4-card .stats-text h3 {
  margin: 0;
  line-height: 1.2;
  color: #1C2136;
  font-size: 26px;
  font-family: "Onest", sans-serif;
  font-weight: 600;
}
.dashboard3-wrapper .white3-box .stats4-card .stats-text h3 span {
  font-size: 14px;
  color: #666;
}
.dashboard3-wrapper .white3-box .stats4-card .stats-text p {
  margin: 4px 0 0;
  color: #8E8E8E;
  font-size: 12px;
  font-family: "Onest", sans-serif;
  font-weight: 300;
}
.dashboard3-wrapper .white3-box .stats4-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.dashboard3-wrapper .white3-box .stats4-card.blue {
  background-color: #FFFFFF;
}
.dashboard3-wrapper .white3-box .stats4-card.blue .icon-badge {
  background-color: #E7F4FF;
}
.dashboard3-wrapper .white3-box .stats4-card.purple {
  background-color: #FFFFFF;
}
.dashboard3-wrapper .white3-box .stats4-card.purple .icon-badge {
  background-color: #d1c4e9;
}
.dashboard3-wrapper .white3-box .stats4-card.green {
  background-color: #FFFFFF;
}
.dashboard3-wrapper .white3-box .stats4-card.green .icon-badge {
  background-color: #E2FFEC;
}
.dashboard3-wrapper .white3-box .stats4-card.pink {
  background-color: #FFFFFF;
}
.dashboard3-wrapper .white3-box .stats4-card.pink .icon-badge {
  background-color: #f8bbd0;
}
.dashboard3-wrapper .training4-tabs {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  padding: 30px;
  margin-top: 30px;
}
.dashboard3-wrapper .training4-tabs .tab4-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 25px;
}
.dashboard3-wrapper .training4-tabs .tab4-buttons .tab4-link {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #FFFFFF;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #A7BACF;
  border-radius: 50px;
}
.dashboard3-wrapper .training4-tabs .tab4-buttons .tab4-link:hover {
  background: #e8f4ff;
  border-color: #27a4ee;
}
.dashboard3-wrapper .training4-tabs .tab4-buttons .tab4-link.active {
  background: #FFFFFF;
  color: #00B0FF;
  border-color: #00B0FF;
  border-radius: 50px;
}
.dashboard3-wrapper .training4-tabs .tab4-buttons {
  /* 🔹 Special styling for Apply Course tab */
}
.dashboard3-wrapper .training4-tabs .tab4-buttons .apply-course {
  background: #3079FF;
  color: #fff;
  border-color: #3079FF;
  border-radius: 15px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.dashboard3-wrapper .training4-tabs .tab4-buttons .apply-course:hover {
  background: rgb(22.5, 104.4927536232, 255);
}
.dashboard3-wrapper .training4-tabs .tab4-buttons .apply-course.active {
  background: rgb(7.2, 94.5884057971, 255);
}
.dashboard3-wrapper .training4-tabs .tab4-content {
  display: none;
  padding: 20px;
  border-top: 1px solid #eee;
}
.dashboard3-wrapper .training4-tabs .tab4-content h3 {
  margin-bottom: 10px;
}
.dashboard3-wrapper .training4-tabs .tab4-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dashboard3-wrapper .training5-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 12px;
  margin-bottom: 25px;
}
.dashboard3-wrapper .training5-header .training5-tabs-left {
  display: flex;
  gap: 20px;
}
.dashboard3-wrapper .training5-header .training5-tabs-left .tab5-link {
  text-decoration: none;
  color: #6E6B7B;
  font-weight: 600;
  font-size: 13px;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s;
}
.dashboard3-wrapper .training5-header .training5-tabs-left .tab5-link:hover {
  background: none;
}
.dashboard3-wrapper .training5-header .training5-tabs-left .tab5-link.active {
  color: #6557E5;
  font-weight: 600;
  font-size: 13px;
}
.dashboard3-wrapper .training5-header .training5-actions-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.dashboard3-wrapper .training5-header .training5-actions-right .search5-box input {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 150px;
  transition: 0.2s;
}
.dashboard3-wrapper .training5-header .training5-actions-right .search5-box input:focus {
  outline: none;
  border-color: #3079FF;
}
.dashboard3-wrapper .training5-header .training5-actions-right .sort5-dropdown select {
  padding: 8px 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
  width: 86px;
}
.dashboard3-wrapper .training5-header .training5-actions-right .sort5-dropdown select:focus {
  outline: none;
  border-color: #3079FF;
}
.dashboard3-wrapper .tab5-contents .tab5-content {
  display: none;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.dashboard3-wrapper .tab5-contents .tab5-content.active {
  display: block;
}
.dashboard3-wrapper .tab5-contents .all-training {
  background: #ffffff;
  border: 2px solid #3992FF;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 25px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dashboard3-wrapper .tab5-contents .all-training:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
.dashboard3-wrapper .tab5-contents .all-training .all-training-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
.dashboard3-wrapper .tab5-contents .all-training .all-training-content .left-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.dashboard3-wrapper .tab5-contents .all-training .all-training-content .right-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.dashboard3-wrapper .tab5-contents .all-training .all-training-content .right-column .certification {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dashboard3-wrapper .tab5-contents .all-training .all-training-content .right-column .certification .cert-icon {
  width: 35px;
  height: auto;
  vertical-align: middle;
}
.dashboard3-wrapper .tab5-contents .all-training .all-training-content p {
  margin: 6px 0;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #111111;
  word-wrap: break-word;
}
.dashboard3-wrapper .tab5-contents .all-training .all-training-content .status-nominated {
  color: #3992FF;
  font-weight: 700;
}
.dashboard3-wrapper .tab5-contents .all-training .all-training-content .status-completed {
  color: #22CE5F;
  font-weight: 700;
}
.dashboard3-wrapper .tab5-contents .all-training .all-training-footer {
  text-align: right;
}
.dashboard3-wrapper .tab5-contents .all-training .all-training-footer .more-btn {
  background: transparent;
  border: none;
  color: #6557E5;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}
.dashboard3-wrapper .tab5-contents .all-training .all-training-footer .more-btn:hover {
  color: #6557E5;
  text-decoration: none;
}
.dashboard3-wrapper .tab5-contents .all-training {
  /* ===== Responsive ===== */
}
@media (max-width: 768px) {
  .dashboard3-wrapper .tab5-contents .all-training .training-content {
    grid-template-columns: 1fr;
  }
  .dashboard3-wrapper .tab5-contents .all-training .training-footer {
    text-align: center;
    margin-top: 10px;
  }
  .dashboard3-wrapper .tab5-contents .all-training p {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .dashboard3-wrapper .dashboard3-container {
    flex-direction: column;
  }
  .dashboard3-wrapper .profile-section {
    max-width: 100%;
  }
}
.dashboard3-wrapper {
  /* Responsive Layout */
}
@media (max-width: 992px) {
  .dashboard3-wrapper .icon3-row {
    flex-wrap: wrap;
  }
  .dashboard3-wrapper .icon3-box {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 600px) {
  .dashboard3-wrapper .icon3-box {
    flex: 1 1 100%;
  }
}

.calendar-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  border: 2px solid #3992FF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  max-width: 1100px;
  margin: 40px auto;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #0a0a0a;
}

.fc {
  background: #f9fbff;
  border-radius: 12px;
  padding: 15px;
}

.training-box {
  background: #ffffff;
  border: 2px solid #3992FF;
  border-radius: 12px;
  padding: 25px;
  margin-top: 25px;
}

.training-box h3 {
  color: #3079FF;
  font-weight: 600;
  margin-bottom: 10px;
}

.training-box p {
  margin: 5px 0;
  font-size: 15px;
}

@media (max-width: 768px) {
  .calendar-wrapper {
    padding: 20px;
  }
  .training-box {
    padding: 15px;
  }
}
.stats-overview {
  position: relative;
  background: #fff;
  padding: 15px 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  width: 103%;
  margin: -60px auto 0;
  z-index: 5;
  font-family: "Poppins", sans-serif;
  top: -60px;
  width: 106%;
  right: 25px;
  height: 160px;
}
.stats-overview .stats-header {
  margin-bottom: 20px;
}
.stats-overview .stats-header h2 {
  font-size: 18px;
  font-weight: 600;
  color: #444;
}
.stats-overview .stats-header p {
  font-size: 13px;
  color: #999;
}
.stats-overview .stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.stats-overview .stats-cards .stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  width: 114%;
  left: -18px;
}
.stats-overview .stats-cards .stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
.stats-overview .stats-cards .stat-card .card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  flex: 1;
  width: 100%;
}
.stats-overview .stats-cards .stat-card .card-icon {
  background-color: #E7F4FF;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.stats-overview .stats-cards .stat-card .card-icon img {
  width: 28px;
  height: 28px;
}
.stats-overview .stats-cards .stat-card .card-content {
  flex: 1;
  text-align: left;
}
.stats-overview .stats-cards .stat-card .card-content p {
  font-size: 12px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  color: #555;
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.stats-overview .stats-cards .stat-card .card-content p img.inline-icon {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.stats-overview .stats-cards .stat-card .card-content .value {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-top: 3px;
}
.stats-overview .stats-cards .stat-card .card-footer {
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
  margin-top: 15px;
  padding: 10px 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 13px;
  background: #E7F4FF;
}
.stats-overview .stats-cards .stat-card .card-footer .label {
  color: #555;
  font-size: 12px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.stats-overview .stats-cards .stat-card .card-footer .value {
  color: #222;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.stats-overview .stats-cards .stat-card .card-footer .growth {
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.stats-overview .stats-cards .stat-card .card-footer .growth.up {
  color: #16a34a;
}
.stats-overview .stats-cards .stat-card .card-footer .growth.down {
  color: #dc2626;
}
@media (max-width: 768px) {
  .stats-overview {
    width: 95%;
    padding: 25px;
    margin-top: -40px;
  }
}

.training-title {
  position: relative;
  bottom: -65px;
}

.button-group {
  display: inline-flex;
  gap: 20px;
  margin-bottom: -40px;
  background: #eef3ff;
  padding: 6px;
  border-radius: 10px;
  position: relative;
  bottom: -55px;
  left: -6px;
}
.button-group .tab-button {
  padding: 20px 40px;
  border: none;
  border-radius: 8px;
  background: #FFFFFF;
  color: #979797;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
}
.button-group .tab-button.active {
  background: linear-gradient(90deg, #28277A, #7D57E5);
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(91, 94, 252, 0.25);
}

.manage-btn {
  display: flex;
  align-items: center;
  background: #01BCDB;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 20px 40px;
  gap: 6px;
  cursor: pointer;
  margin-left: auto;
  margin-bottom: 10px;
  margin-top: -40px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  position: relative;
  bottom: -79px;
}
.manage-btn img {
  width: 30px;
  height: 20px;
}

.training-container {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  bottom: -77px;
  margin-bottom: 80px;
}
.training-container h2 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}
.training-container .training-content {
  display: none;
}
.training-container .training-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
.training-container .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.training-container .top-bar .filter-tabs {
  display: flex;
  gap: 10px;
}
.training-container .top-bar .filter-tabs .filter {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  color: #6E6B7B;
  font-size: 14px;
  font-family: "Onest", sans-serif;
  font-weight: 400;
}
.training-container .top-bar .filter-tabs .filter::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  transition: width 0.3s ease;
}
.training-container .top-bar .filter-tabs .filter.active {
  color: #2A2A2A;
  font-size: 14px;
  font-family: "Onest", sans-serif;
  font-weight: 600;
}
.training-container .top-bar .filter-tabs .filter.active::after {
  width: 100%;
}
.training-container .top-bar .actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.training-container .top-bar .actions .add-btn {
  background: #3079FF;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.training-container .sub-content {
  display: none;
}
.training-container .sub-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
.training-container .training-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.training-container .training-table th {
  background: #f2f4f8;
  padding: 12px;
  text-align: left;
  color: #111111;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.training-container .training-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  color: #141414;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.training-container .training-table td:last-child {
  text-align: center;
}
.training-container .training-table .status {
  display: inline-block;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  margin-top: 18px;
}
.training-container .training-table .status.active {
  color: #2ecc71;
  font-weight: 600;
}
.training-container .training-table .status.completed {
  color: #22CF61;
  background-color: #DEFFEA;
  font-weight: 600;
}
.training-container .training-table .status.scheduled {
  color: #f39c12;
  font-weight: 600;
}
.training-container .training-table .status.notstarted {
  color: #FFA300;
  background-color: #FFF9DD;
  font-weight: 600;
}
.training-container .training-table .status.dropped {
  color: #D81414;
  background-color: #FFEBE7;
  font-weight: 600;
}
.training-container .training-table .status.deffered {
  color: #F7630C;
  background-color: #FFDFCC;
  font-weight: 600;
}
.training-container .training-table .status.inprogress {
  color: #6557E5;
  background-color: #EDE8FE;
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pagination {
  position: sticky;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  padding: 8px 10px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  z-index: 10;
}
.pagination .page-btn {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 4px 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.pagination .page-btn:hover {
  background: #f5f5f5;
}
.pagination .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination #pageInfo {
  padding: 6px 10px;
  background: #f0f0f0;
  border-radius: 6px;
}

/*# sourceMappingURL=custom1.css.map */
