/* ------------------------------------------------
Font
-------------------------------------------------- */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* ---------------------------------------------------
Root Variables
------------------------------------------------------ */
:root {
  --primary-color: #ff3951;
  --secondary-color: #0f0b0c;
  --white-color: #ffffff;
  --black-color: #000000;
  --thead-color: #f5f6f9;
  --body-color: #f7f8f9;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --primary-rgb: 255, 89, 0;
  --secondary-rgb: 15, 11, 12;
  --white-rgb: 255, 255, 255;
  --black-rgb: 0, 0, 0;
  --primary-font: "Poppins";
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-md: 16px;
  --fs-normal: 15px;
  --fs-lg: 18px;
  --fs-xl: 20px;
  --fs-xxl: 24px;
  --fs-xxxl: 26px;
  --title-fs: 28px;
  --transition-base: all 0.3s ease;
  --transition-md: all 0.5s ease;
  --box-shadow-sm: 0px 8px 10px 0px rgba(0, 0, 0, 0.03);
  --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --border-radius: 0.375rem;
  --green-color: #65c15c;
}

/* ---------------------------------------------------
Focus
------------------------------------------------------ */
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  outline: none;
  box-shadow: none !important;
  border-color: rgba(var(--black-rgb), 0.25) !important;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-close {
  opacity: 1;
}

.btn-close:focus {
  box-shadow: none;
}

input[readonly],
select[readonly] {
  background-color: #f5f5f5;
  color: #555;
  border: 1px solid #ccc;
  pointer-events: none;
}

input[type="date"],
.form-select,
textarea::placeholder {
  color: #555;
  font-family: var(--primary-font);
}

.select2-container .select2-search--inline .select2-search__field {
  font-family: var(--primary-font);
}

.form-select,
.form-control,
.form-label,
.select2-container .select2-selection--single,
.select2-container .select2-search--inline .select2-search__field,
.select2-container--default .select2-selection--multiple {
  font-size: 14px;
}

/* ---------------------------------------------------
Layout
------------------------------------------------------ */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding: 20px;
  overflow-x: hidden;
  min-height: 80vh !important;
}

/* ---------------------------------------------------
Global Styles
------------------------------------------------------ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  color: var(--black-color);
  overflow-x: hidden;
  background-color: var(--body-color);
  font-family: var(--primary-font);
}

section {
  overflow-x: hidden;
}

.section {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}

.display-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ----------------------------------------------------
Typography
------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  font-weight: 600;
  color: var(--black-color);
}

a {
  color: var(--black-color);
  transition: var(--transition-base);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.text-main {
  color: var(--primary-color) !important;
}

.section-title {
  border-bottom: 1px solid var(--gray-400);
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.section-title h3,
h2 {
  margin-bottom: 0px;
  font-size: 22px;
}

/* .section-title h3 {
  font-size: var(--title-fs);
} */
/* ----------------------------------------------------
Buttons
------------------------------------------------------ */
.btn-main {
  border: 1px solid var(--primary-color);
  color: var(--white-color);
  font-family: var(--primary-font);
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: 7px 30px;
  transition: var(--transition-base);
  background-color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
}

.btn-sm.btn-main,
.btn-sm.btn-outline-secondary {
  padding: 8px 15px;
  font-size: 14px;
}

.btn-main:hover,
.btn-main:disabled {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: 7px 30px;
  transition: var(--transition-base);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white-color) !important;
}

.btn-outline:hover i {
  color: var(--white-color) !important;
}

.btn-gray {
  color: #6c757d;
  background-color: transparent;
  border: 1px solid #6c757d;
}

.btn-gray:hover {
  background-color: #6c757d;
}

.btn-edit,
.btn-edit:focus {
  color: #10ab10;
  padding: 5px 10px;
  border: 1px solid #10ab10;
  background-color: transparent;
}

.btn-edit:hover {
  color: var(--white-color);
  border: 1px solid #10ab10;
  background-color: #10ab10;
}

.btn-approval,
.btn-approval:focus {
  color: #3bade3;
  padding: 5px 10px;
  border: 1px solid #3bade3;
  background-color: transparent;
}

.btn-approval:hover {
  color: var(--white-color);
  border: 1px solid #3bade3;
  background-color: #3bade3;
}

.btn-delete,
.btn-delete:focus {
  color: #ff0000;
  padding: 5px 10px;
  border: 1px solid #ff0000;
  background-color: transparent;
}

.btn-delete:hover {
  color: var(--white-color);
  border: 1px solid #ff0000;
  background-color: #ff0000;
}

.btn-view,
.btn-view:focus {
  color: #3bade3;
  padding: 5px 10px;
  border: 1px solid #3bade3;
  background-color: transparent;
}

.btn-view:hover {
  color: var(--white-color);
  border: 1px solid #3bade3;
  background-color: #3bade3;
}

/* ----------------------------------------------
Breadcrumb
----------------------------------------------- */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: ">";
  color: var(--gray-500);
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.breadcrumb-item .icon {
  font-size: var(--fs-sm);
  color: var(--primary-color);
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--gray-600);
}

/* ----------------------------------------------
Pagination
----------------------------------------------- */
.pagination {
  margin-top: 1rem;
}

.page-link {
  color: var(--primary-color);
  border: 1px solid var(--gray-300);
  padding: 10px 20px;
  margin-left: -1px;
  background-color: var(--white-color);
  transition: var(--transition);
}

.page-link:hover,
.page-link:focus {
  background-color: var(--gray-200);
  border-color: var(--gray-300);
  box-shadow: none;
}

.page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

.page-item.disabled .page-link {
  color: var(--gray-500);
  background-color: var(--white-color);
  border-color: var(--gray-300);
}

/* --------------------------------------------
Header
----------------------------------------------- */
body.sticky-header-active {
  padding-top: 100px;
  /* header height */
}

.header .logo {
  width: 260px;
  height: auto;
}

.header {
  position: relative;
  z-index: 1024;
  box-shadow: var(--box-shadow-sm);
  background-color: var(--white-color);
  padding: 0px 30px;
  /* min-height: 70px; */
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 70px;
  z-index: 999;
  width: 100%;
}

.header .navbar-nav .nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .navbar-nav .nav-link {
  display: block;
  margin-right: 15px;
  color: var(--black-color);
  transition: var(--transition-base);
}

.header .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.header .navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.header .notification-dropdown {
  position: relative;
}

.header .notification-dropdown .nav-link {
  padding-bottom: 3px;
  margin-right: 0px;
}

.header .notification-dropdown .nav-link i {
  font-size: 18px;
}

.header .notification-dropdown .count {
  position: absolute;
  top: 0px;
  right: 0px;
}

.header .notification-dropdown .dropdown-toggle::after {
  border: none;
}

.header .notification-dropdown .nav-link,
.header .user-dropdown .nav-link,
.header .notification-dropdown .nav-link:hover,
.header .user-dropdown .nav-link:hover {
  color: var(--gray-700);
}

.header .dropdown-menu {
  border: none;
  box-shadow: var(--box-shadow-lg);
  border-radius: var(--border-radius);
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--gray-100);
  color: var(--primary-color);
}

.header .user-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 0px;
}

.user-dropdown .nav-link i {
  font-size: 30px;
}

.user-dropdown .dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 14px;
  transition: var(--transition-md);
}

.header-menu {
  min-width: 200px;
}

.header-menu a {
  padding: 7px 20px;
}

.header .dropdown-navbar {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.header .navbar-toggler {
  border: 0px;
}

.header .navbar-toggler:focus {
  box-shadow: none;
}

/* --------------------------------------------
Login
----------------------------------------------- */
.login-section {
  padding: 60px 0px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  background: var(--white-color);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--box-shadow-sm);
  border: 0px;
}

.login-card .logo {
  text-align: center;
}

.login-card .logo img {
  width: 330px;
  margin-bottom: 25px;
}

.login-card .logo h4 {
  margin-bottom: 20px;
}

.login-card .form-control {
  padding: 10px 15px;
}

.login-card .text-sm {
  color: var(--gray-800);
  font-size: var(--fs-sm);
}

/* --------------------------------------------
Dashboard
----------------------------------------------- */
.dashboard-card {
  padding: 24px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dashboard-card .card-body {
  padding: 0;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: 16px;
  width: 100%;
}

.dashboard-card .img-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
  background: #f8f9fa;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.dashboard-card .img-box i {
  font-size: 22px;
}

.dashboard-card .content-box {
  width: 100%;
  text-align: end;
}

.dashboard-card .content-box h4 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #1a1a1a;
  letter-spacing: -0.04em;
  line-height: 1;
}

.dashboard-card .content-box p {
  font-size: 13px;
  color: #8e8e93;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dashboard-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.dashboard-card:hover .img-box {
  transform: scale(1.1) rotate(-5deg);
}

.dashboard-card:hover h4 {
  color: var(--primary-color);
}

/* Stat Icon Colors with Glassmorphism Base */
.img-box.icon1 {
  color: #5856d6;
  background: rgba(88, 86, 214, 0.1);
}

.img-box.icon2 {
  color: #34c759;
  background: rgba(52, 199, 89, 0.1);
}

.img-box.icon3 {
  color: #ff3b30;
  background: rgba(255, 59, 48, 0.1);
}

.img-box.icon4 {
  color: #ff9500;
  background: rgba(255, 149, 0, 0.1);
}

.img-box.icon5 {
  color: #007aff;
  background: rgba(0, 122, 255, 0.1);
}

.img-box.icon-projects {
  color: #af52de;
  background: rgba(175, 82, 222, 0.1);
}

.img-box.icon-tasks {
  color: #5ac8fa;
  background: rgba(90, 200, 250, 0.1);
}

.chart-canvas {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 350px;
}

.chart-canvas.custom-margin {
  margin-top: 10%;
}

.chart-canvas.admin-attchart {
  max-height: 250px;
  margin-top: 0px;
}

.chart-canvas.attendance-canvas {
  max-height: 250px;
  margin-top: 0px;
}

/* --- Premium Dashboard Enhancements --- */
.premium-dashboard-container {
  padding: 20px 0;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  /* height: 100%; */
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff7b8c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.chart-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.chart-card-header h4,
.glass-card .section-heading h4 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.swiper,
.swiper-container {
  overflow: hidden !important;
  width: 100%;
}

.slider-container-box {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.employee-slider-card {
  border: none !important;
  background: transparent !important;
}

/* badge */
/* premium rank badges */
.rank-badge {
  position: absolute;
  top: -10px;
  right: -35px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 800;
  border-radius: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #fff;
  z-index: 10;
  animation: badgeFloat 3s ease-in-out infinite;
  backdrop-filter: blur(4px);
  background: var(--primary-color);
  /* background: linear-gradient(135deg, #ffca28, #ff8f00); */
  box-shadow: 0 0 15px rgba(255, 143, 0, 0.4);
}

.rank-badge i {
  font-size: 12px;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.employee-slider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.hover-elevate {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-elevate:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gradient-heading {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.btn-premium {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff7b8c 100%);
  border: none;
  border-radius: 12px;
  padding: 10px 24px;
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 57, 81, 0.3);
  transition: all 0.3s ease;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 57, 81, 0.4);
  color: white;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* --------------------------------------------
Cards
----------------------------------------------- */
.plain-card {
  border: 0px;
  border-radius: 0px;
  padding: 20px;
  height: 100%;
}

.plain-card h4 {
  margin-bottom: 10px;
  text-align: start;
  width: 100%;
  font-size: var(--fs-md);
}

.chart-left-col.auto-height {
  height: auto !important;
}

.chart-left-col.auto-height .plain-card {
  height: auto !important;
  padding-bottom: 50px;
}

.alert,
h6 {
  font-size: 14px;
}

/* --------------------------------------------
Table
----------------------------------------------- */
.select2-container--default .select2-selection--multiple {
  border: 1px solid #dee2e6;
}

.select2-container .select2-search--inline .select2-search__field {
  min-height: 25px;
}

/* --------------------------------------------
Table
----------------------------------------------- */
.common-table {
  vertical-align: middle;
}

.common-table .title-sm {
  display: block;
  font-size: var(--fs-sm);
  color: var(--gray-600);
  font-weight: 500;
}

.common-table thead tr th {
  padding: 15px 20px;
  background-color: var(--thead-color);
  white-space: nowrap;
}

.common-table tbody tr td {
  padding: 8px 20px;
  white-space: nowrap;
}

table.dataTable {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

table.dataTable thead th.center {
  text-align: center !important;
}

table.dataTable tbody th,
table.dataTable tbody td {
  padding: 10px 12px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------
Calendar
----------------------------------------------- */
.fc .fc-toolbar-title {
  font-size: 1.5rem;
}

.fc .fc-daygrid-day.fc-day-today {
  background-color: #b0c6e11f;
}

.fc .fc-button-primary,
.fc .fc-button-primary:disabled {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.fc .fc-button-primary.active,
.fc .fc-button-primary:active,
.fc .fc-button-primary:hover {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  background-color: var(--white-color) !important;
}

.fc-direction-ltr .fc-button-group>.fc-button:not(:first-child) {
  border-radius: 8px !important;
}

.fc-direction-ltr .fc-button-group>.fc-button:not(:last-child) {
  border-radius: 8px !important;
  margin-right: 5px;
}

.fc .fc-button-primary:focus,
.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
.fc .fc-button-primary:not(:disabled):active:focus {
  box-shadow: none;
}

/* --------------------------------------------
Modals
----------------------------------------------- */
.delete-modal .modal-content {
  border-radius: 0px;
}

.delete-modal .actions {
  margin-top: 15px;
  margin-bottom: 5px;
  text-align: end;
}

.modal-footer {
  padding-top: 0px;
}

/* --------------------------------------------
Footer
----------------------------------------------- */
.footer {
  background-color: var(--white-color);
  text-align: center;
  padding: 20px 0px;
}

.footer p {
  margin: 0px;
}

/* ---------------------------------
Project
----------------------------------- */
.project-card {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  padding: 24px;
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 25px;
  /* cursor: grab; */
  cursor: pointer;
}

.project-card a,
.project-card h5 {
  text-wrap: auto;
  text-decoration: none;
}

.project-section .project-card {
  cursor: pointer;
}

/* .project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
} */

.project-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 10px;
  flex-direction: column;
}

.project-title {
  display: flex;
  align-items: start;
  width: 100%;
  gap: 30px;
  justify-content: space-between;
}

.project-icon {
  width: 45px;
  height: 45px;
  /* background: linear-gradient(135deg, #ff3951, #ff6b81); */
  background-color: #f0ecec;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px #f0ecec;
}

.project-icon i {
  color: var(--primary-color);
  font-size: 25px;
}

.project-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.status-badge {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 500;
}

.status-done {
  background-color: #e6f4ea;
  color: #1b7f47;
}

.status-completed {
  background-color: #efefef;
  color: #665757;
}

.status-inprogress {
  background-color: rgb(255 243 205 / 70%) !important;
  color: #b87205;
}

.status-todo {
  background: #f0e8fe;
  color: #6f42c1;
}

.status-review {
  background-color: #e4f6fe;
  color: #42a5f5;
}

.bg-danger {
  background-color: var(--primary-color) !important;
}

.project-progress {
  height: 8px;
  border-radius: 4px;
}

.member-list img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-right: -10px;
}

.member-count {
  background: #f3f4f6;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #333;
  border: 2px solid #fff;
  margin-left: 5px;
}

.client-info {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

.project-flex_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.date-box {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.progress-box {
  padding: 10px 0;
}

.project-card .btn-outline {
  padding: 3px 15px;
  font-size: 14px;
  margin-bottom: 0px;
}

.kanban-scroll-container {
  overflow-x: auto;
  /* main requirement */
  overflow-y: hidden;
  display: flex;
  gap: 0px;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  white-space: nowrap;
  /* prevent wrapping */
  /* height: 70vh; */
}


.kanban-scroll-container::-webkit-scrollbar {
  height: 10px;
}

.kanban-scroll-container::-webkit-scrollbar:hover {
  background: #b4b1b1;
}

.kanban-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.kanban-scroll-container::-webkit-scrollbar-thumb {
  background: #c4c4c4;
  border-radius: 10px;
}

.kanban-scroll-container>.col {
  min-width: 430px;
  /* Set column width */
  max-width: 100%;
  flex: 0 0 auto;
  /* Prevent wrapping */
}

.kanban-column {
  min-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  user-select: none;
  padding: 0px;
  /* flex-shrink: 0; */
}

.kanban-column:empty::after {
  content: "Drop Here";
  display: block;
  text-align: center;
  color: #888;
  font-size: 14px;
  padding: 20px 0;
}

.kanban-column .dropdown-menu i {
  color: #91959a;
  margin-bottom: 2px;
}

.project-section .kanban-column {
  padding: 0px 5px;
}

.project-section .project-card {
  padding: 12px;
  height: 100%;
  border-bottom: 1px solid var(--primary-color);
}

.project-section .kanban-header {
  padding: 15px 0px !important;
}

.kanban-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 15px 5px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgb(255 57 81 / 80%);
}

.kanban-header .card-title-sm {
  font-size: 18px;
}

.kanban-badge {
  background-color: #fff5f5;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  color: var(--primary-color);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: var(--fs-md);
  border: 1px solid #ffd6db;
}

.kanban-body {
  max-height: 70vh;
  overflow-y: auto;
  /* padding: 10px; */
  /* overflow-x: hidden; */
  min-height: 60vh;
  overflow-x: hidden;
}

.kanban-body::-webkit-scrollbar {
  width: 8px;
}

.kanban-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.kanban-body::-webkit-scrollbar-thumb {
  background: #c4c4c4;
  border-radius: 10px;
}

.sortable-ghost {
  opacity: 0.5;
  background-color: #ffe6e6;
}

.kanban-scroll-container {
  flex: 1;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem;
  align-items: flex-start;
}

.kanban-board .container-fluid {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.kanban-board {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.btn-light {
  background: #f0f0f0;
  color: var(--primary-color);
  border: 1px solid #dcdcdc;
}

.btn-light.text-danger {
  background: #ffdfdf !important;
  border: 1px solid #ffdfdf;
  color: var(--primary-color) !important;
}

.btn-light.text-danger:hover,
.btn-light:hover {
  background: transparent !important;
}

/* ----------------------------------------
User
-----------------------------------------*/
.profile-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: var(--transition-base);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.07);
  height: 100%;
}

.profile-card:hover {
  border: 1px solid var(--primary-color);
}

.profile-header {
  height: 105px;
  background-color: #f2f2f2;
  position: relative;
}

.profile-card .profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
}

.profile-body {
  text-align: center;
  padding: 85px 20px 20px;
}

.profile-body h5 {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.profile-body p.role {
  color: #6c757d;
  font-size: var(--fs-normal);
  margin-bottom: 12px;
}

.profile-body .contact-info {
  text-align: left;
  font-size: var(--fs-sm);
  margin-top: 20px;
}

.profile-body .contact-info .flex-box {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.contact-info p {
  margin-bottom: 8px;
  display: flex;
  gap: 3px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-info strong {
  color: #525050;
}

.profile-body .contact-info i {
  color: #525050;
  font-size: var(--fs-normal);
  text-align: center;
  margin-right: 5px;
}

.profile-actions {
  border-top: 1px solid #eee;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn-profile {
  border-radius: 8px;
  font-weight: 500;
  padding: 8px 15px;
  font-size: var(--fs-sm);
  line-height: 1;
}

.btn-secondary,
.btn-secondary-outline:hover {
  background-color: rgba(25, 135, 84, 1);
  color: #fff;
  border: 1px solid rgba(25, 135, 84, 1);
  padding: 5px 15px;
  border-radius: 7px;
  transition: var(--transition-base);
}

.btn-secondary:hover,
.btn-secondary-outline {
  color: rgba(25, 135, 84, 1);
  background-color: transparent;
  border: 1px solid rgba(25, 135, 84, 1);
  padding: 5px 15px;
  border-radius: 7px;
  transition: var(--transition-base);
}

/* ----------------------------------------------
PROFILE
----------------------------------------------- */
.profile-card-h {
  background: #fff;
  border-radius: 0px;
  box-shadow: 0 3px 16px rgba(142, 134, 171, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  gap: 20px;
  transition: 0.3s;
  margin-bottom: 5px;
}

.profile-card-h .profile-content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.profile-card-h .flex-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 35px;
}

.profile-card-h .icon-flex-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f7f7f7;
  padding: 8px 30px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s ease;
}

.profile-card-h .icon-flex-box .img-box {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffd6d6;
}

.profile-img-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
}

.profile-img-wrapper .profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #b4b4b4;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.edit-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  transform: translate(20%, 20%);
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: #ff3b3b;
  transition: all 0.3s ease;
}

.edit-icon:hover {
  background: #ff3b3b !important;
}

.edit-icon i,
.edit-icon:hover i {
  color: var(--white-color);
  font-size: var(--fs-sm);
}

.profile-card-h .icon-flex-box i {
  color: var(--primary-color);
  font-size: 20px;
}

.profile-card-h .flex-box span {
  display: block;
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--black-color);
}

.profile-card-h .flex-box small {
  color: #666;
  font-size: var(--fs-normal);
  font-weight: 500;
}

.personal-info-card .flex-box a {
  color: var(--primary-color);
}

.profile-card-h img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #ff4d4d;
  object-fit: cover;
}

.profile-details h5 {
  margin-bottom: 5px;
  font-weight: 600;
  display: block;
  text-wrap: nowrap;
  font-size: var(--fs-md);
}

.profile-details small {
  color: var(--gray-600);
  display: block;
  margin-bottom: 10px;
  font-size: var(--fs-normal);
  text-wrap: nowrap;
}

.stats span {
  font-weight: 600;
  font-size: var(--fs-normal);
}

.profile-donut-container {
  width: 100%;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-gray {
  margin: 5px 0px 0px;
  color: #777;
}

.chart-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: var(--fs-normal);
  color: #333;
  pointer-events: none;
}

.personal-info-card {
  border-radius: 0px;
  background: var(--white-color);
  transition: 0.3s;
  /* box-shadow: 0 3px 16px rgba(142, 134, 171, 0.05); */
  padding: 20px;
}

/* .personal-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
} */
.personal-info-card .flex-box ,
.plain-card .flex-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 10px;
  gap: 10px;
}
.plain-card .flex-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 10px;
  gap: 10px;
}
.info-list li {
  padding: 8px 0;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  gap: 10px;
  align-items: center;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list i {
  font-size: 16px;
  color: var(--primary-color);
  vertical-align: middle;
}

.info-list li strong {
  width: 100px;
  flex-shrink: 0;
  font-size: 14px;
}

.info-list li p {
  margin-bottom: 0px;
  color: #21252a;
  font-size: 14px;
}

.status-card .icon-box span {
  display: block;
  font-size: 30px;
  font-weight: 600;
}

.status-card .icon-box small {
  display: block;
  font-size: 25px;
}

.team-members-card {
  background-color: var(--white-color);
  border-radius: 0px;
}

.team-members-card .flex-box,
.sprint-detail_section .flex-box,
.task-detail-card .flex-box {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  gap: 10px;
}

.team-members-card .member-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
}

.team-members-card ul li {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
}

.team-members-card ul li:last-child {
  border-bottom: none;
}

.badge.bg-success {
  background-color: var(--green-color) !important;
}

.badge.bg-secondary {
  background-color: #adb5bd !important;
}

.task-stats-card {
  background-color: #fff;
  border-radius: 0px;
}

.task-stats-card .flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.task-stats-card ul li {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
}

.task-stats-card ul li:last-child {
  border-bottom: none;
}

.text-success {
  color: var(--green-color) !important;
}

.text-danger {
  color: #ff3951 !important;
}

.text-warning {
  color: #f1a42a !important;
}

/* ---------------------------------------
Chat
----------------------------------------- */
.chat-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.chat-sidebar {
  background-color: #fff;
  border-right: 1px solid #eee;
  height: 75vh;
  overflow-y: auto;
  padding: 10px;
}

.chat-section .chat-sidebar {
  height: 70vh;
}

.chat-sidebar h5 {
  padding: 15px;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

.search-box {
  padding: 10px;
}

.search-box input {
  border-radius: 20px;
  padding: 10px 20px;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 10px 10px 9px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.3s;
  cursor: pointer;
  width: 100%;
  overflow-x: hidden;
}

.contact:hover,
.contact.active {
  background: #f8f9fb;
}

.contact img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.chat-sidebar .contact-info {
  /* flex-grow: 1; */
  /* flex: 1; */
  margin-left: 5px;
  max-width: 150px;
}

.chat-sidebar .contact-info h6 {
  margin: 0;
  font-size: 14px;
}

.chat-sidebar .contact-info small {
  color: var(--gray-600);
}

.chat-box {
  height: 75vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-radius: 0px;
  background: var(--white-color);
  transition: 0.3s;
}

.chat-section .chat-box {
  height: 70vh;
}

.chat-header {
  background: var(--white-color);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  right: 0;
  z-index: 20;
}

.chat-bottom {
  position: sticky;
  bottom: 0;
  right: 0;
}

.chat-header img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 10px;
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--white-color);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.chat-messages::-webkit-scrollbar {
  display: none;
}

.message {
  max-width: 90%;
  padding: 10px 15px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: 40%;
}

.message.me {
  background: #f2f2f2;
  color: #000;
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

.message.me img {
  max-width: 250px;
  height: auto;
}

.message.them {
  background: var(--white-color);
  border: 1px solid #eee;
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.chat-input {
  background: var(--white-color);
  padding: 15px;
  border-top: 1px solid #eee;
}

.chat-input input {
  border-radius: 30px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  outline: none;
}

.chat-input button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-color);
  border: none;
  color: var(--white-color);
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

.chat-input button:hover {
  background-color: var(--primary-color);
}

.chat-input button i {
  margin-left: -5px;
}

.plain-card .nav-pills .nav-link.active,
.plain-card .nav-pills .show>.nav-link,
.plain-card .nav-pills .nav-link:hover {
  background: #f2f2f2 !important;
}

.plain-card .nav-pills .nav-link .contact-info small {
  color: var(--black-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 85%;
  display: block;
}

.plain-card .nav-pills .nav-link small {
  color: var(--black-color);
  flex: 1;
  text-align: end;
}

.profile-chat_box {
  height: 75vh;
  margin-top: 20px;
  border: 1px solid #edecec;
}

.project-box .plain-card {
  padding: 20px;
}

.card-100 {
  height: 100%;
}

.progress .progress-bar {
  background-color: var(--green-color) !important;
}

.input-group-text {
  background-color: transparent;
  border-right: none;
  border-left: none;
  cursor: pointer;
  color: var(--gray-600);
}

.chat-section .chat-input input,
.managers-profile_box1 .chat-input input,
.profile-chat_box .chat-input input {
  border-right: none;
}

.chat-section .chat-input button {
  border-radius: 30px;
}

/* .chat-contact_info {
  padding-left: 10px;
} */

.chat-contact_info h6 {
  margin-bottom: 0px;
}

.chat-section .contact {
  justify-content: center;
}

.chat-contact_info small {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: block;
  flex: auto;
  text-align: start !important;
}

/* -----------------------------------
TASK
------------------------------------ */
.task-accordion .accordion-button {
  background: #fff;
  color: #333;
  border-radius: 10px !important;
  box-shadow: none;
  transition: all 0.3s ease;
}

.task-accordion .accordion-button:focus {
  box-shadow: none;
}

.task-accordion .accordion-button:not(.collapsed) {
  color: #d92626;
  box-shadow: none;
}

.mt-20 {
  margin-top: 20px;
}

.task-accordion .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  margin-bottom: 10px;
}

.task-accordion .accordion-body {
  background: var(--white-color);
  border-top: 1px solid #f1f1f1;
  border-radius: 0 0 10px 10px;
}

.task-accordion .accordion-button::after {
  display: none !important;
}

.task-detail-box {
  background-color: #f2f2f273;
  border: 1px solid #f2f2f273;
  transition: 0.3s;
}

.task-detail-box h6 {
  font-weight: 600;
}

.task-detail-box .progress-bar {
  border-radius: 10px;
  background-color: #10ab10;
}

.task-detail-box ul li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.task-detail-box img {
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.task-summary {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 10px;
}

.task-summary .content-box {
  display: flex;
  align-items: center;
  margin-right: auto;
  gap: 8px;
}

.task-summary .content-box_two {
  display: flex;
  gap: 10px;
  margin-left: auto;
  align-items: end;
  flex-direction: column;
}

.task-summary .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2d9;
  border: 1px solid #ffc3ca;
}

.task-summary .icon-box i {
  font-size: 20px;
  margin-left: 2px;
  color: var(--primary-color);
}

.task-summary .icon-box p {
  font-weight: 600;
  color: var(--primary-color);
  font-size: var(--fs-lg);
}

.task-summary .card-title-sm {
  transition: all 0.3s ease-in-out;
}

.task-summary .card-title-sm:hover {
  text-decoration: underline;
}

.task-summary .flex-box {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 5px;
}

.task-summary .badge.status-done {
  padding: 5px 13px 5px;
  font-size: var(--fs-sm);
}

.status-card {
  background: var(--white-color);
  border-radius: 12px 0 0 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 18px 20px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.status-card:hover {
  transform: translateY(-4px);
}

.status-card h6 {
  font-weight: 600;
  color: #555;
  font-size: var(--fs-xl);
}

.status-card h3 {
  font-size: 30px;
  font-weight: 700;
  margin: 10px 0 0;
}

.status-card p {
  color: var(--gray-600);
  margin: 0;
}

.status-card.ongoing {
  border-left: 5px solid rgb(222 169 0) !important;
}

.status-card.process {
  border-left: 5px solid #42a5f5;
}

.status-card.completed {
  border-left: 5px solid var(--green-color);
}

.status-card.overall {
  border-left: 5px solid #6f42c1;
}

.status-card .status-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.status-card .status-icon i {
  font-size: 25px;
}

.status-card.process .status-icon {
  background-color: #e4f6fe;
}

.status-card.process .status-icon i {
  color: #42a5f5;
}

.status-card.completed .status-icon {
  background-color: #d9f8d6;
}

.status-card.completed .status-icon i {
  color: var(--green-color);
}

.status-card.ongoing .status-icon {
  background-color: rgb(255 243 205 / 70%) !important;
}

.status-card.ongoing .status-icon i {
  color: rgb(222 169 0) !important;
}

.status-card.overall .status-icon {
  background-color: #f0e8fe;
}

.status-card.overall .status-icon i {
  color: #6f42c1;
}

.card-title-sm {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--black-color);
  margin-bottom: 10px;
}

/* ----------------------------------------
Task Details
----------------------------------------- */
.tag-label {
  background: #eef1ff;
  color: #4a4fb5;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

/* ===== Badges ===== */
.task-status {
  background: #e6f5e8;
  color: #2d8a3e;
  padding: 6px 12px;
  font-weight: 600;
  border-radius: 8px;
}

.task-milestone {
  background: #f4f4f4;
  color: #555;
  padding: 6px 12px;
  font-weight: 600;
  border-radius: 8px;
}

/* ===== Info Groups ===== */
.info-group {
  margin-bottom: 16px;
}

.info-label {
  color: #6c757d;
  display: block;
}

.info-value {
  font-weight: 600;
  margin: 0;
}

/* ===== Attachments ===== */
.attachment-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.attachment-item {
  background: #f6f6f6;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

/* ===== Subtasks ===== */
.subtask {
  padding: 8px 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ===== Progress Bar ===== */
.task-progress {
  height: 10px;
  border-radius: 20px;
}

.task-progress .progress-bar {
  background: var(--primary-color);
  border-radius: 20px;
}

/* Timeline Wrapper */
.timeline {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid #e5e5e5;
}

/* Single Timeline Item */
.timeline-item {
  position: relative;
  padding-bottom: 20px;
  display: flex;
  gap: 15px;
}

/* Last item spacing fix */
.timeline-item:last-child {
  padding-bottom: 0;
}

/* Circle Icon */
.timeline-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Text Content */
.timeline-content {
  flex: 1;
}

.time-text {
  font-size: 12px;
  opacity: 0.7;
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--white-color);
}

.post-box .input-group-text {
  border-left: 1px solid var(--bs-border-color);
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 2px;
}

.post-img_box img {
  max-width: 250px;
  height: auto;
}

.activity-card {
  padding: 20px;
}

.activity-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.activity-item:last-child {
  padding-bottom: 0;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #eee;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.activity-line {
  width: 2px;
  flex-grow: 1;
  background: #eaeaea;
  margin-top: 8px;
}

.activity-content {
  background: #fafafa;
  padding: 12px 15px;
  border-radius: 10px;
  width: 100%;
  border: 1px solid #f0f0f0;
}

.activity-badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 50px;
  margin-left: 5px;
}

.post-input-group {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
}

/* .post-field {
  border: none !important;
} */

.post-field:focus {
  box-shadow: none !important;
}

.attachment-previews img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 8px;
  border-radius: 6px;
}

.activity-box {
  max-height: 500px;
  overflow: auto;
}

.activity-box::-webkit-scrollbar {
  display: none;
}

/* -----------------------------------------
Task Board
----------------------------------------- */
.three-dot-btn {
  border: none;
  background: transparent;
}

.project-card .dropdown-menu {
  border-radius: 10px;
  padding: 6px 0;
  cursor: pointer;
  z-index: 99999;
}

.project-card .dropdown-menu li a {
  padding: 5px 15px;
  font-size: var(--fs-sm);
  font-weight: 600;
}

/* .project-card .dropdown-item.dlt {
  background-color: #ff39510a;
} */
.project-card .dropdown-item:hover {
  background-color: #f6f6f6;
}

.task-title {
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1c;
}

.task-desc {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 0;
}

.avatar-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-left: -8px;
  border: 2px solid #fff;
  object-fit: cover;
}

.task-dates {
  font-size: 12px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  flex: 1;
  gap: 10px;
}

.task-date-label {
  /* background: #f4f6f9; */
  background-color: #eff2f6;
  padding: 6px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.task-date-label i {
  font-size: var(--fs-sm);
  color: var(--gray-600);
}

.task-date_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-top: 20px; */
}

/*------------------------------------
Milestone
------------------------------------*/
.completed-issues {
  background: var(--white-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  margin: 30px 0;
}

.section-title {
  font-size: var(--fs-normal);
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.issue-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9fafc;
  border: 1px solid #e0e6ed;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.issue-card:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 255, 0.08);
}

.issue-info h4 {
  margin: 0;
  font-size: 18px;
  color: #34495e;
  margin-bottom: 10px;
}

.closed-days {
  font-size: 14px;
  color: #494949;
  margin-bottom: 0px;
}

.closed-days span {
  color: #10ab10;
  font-weight: 500;
}

.issue-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.issue-actions input {
  border: 1px solid #dcdfe3;
  border-radius: 6px;
  padding: 12px 10px;
  width: 400px;
  font-size: 14px;
}

.issue-actions input:focus {
  border: 1px solid #dcdfe3 !important;
  box-shadow: none !important;
}

.task-chart-container {
  margin: 80px auto;
  max-width: 400px;
}

.project-summery {
  margin: 55px auto 0;
  width: 400px !important;
}

/* 
.donut-wrapper {
  width: 150px;
  height: 150px;
} */
.flex-box_cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.flex-box_cards .user-card {
  width: 100%;
}

.flex-box_cards .user-card .img-box {
  width: 60px;
  height: 60px;
}

.sprint-detail_section .dashboard-card h4 {
  font-size: 22px;
}

.task-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  margin-bottom: 12px;
  padding: 10px;
}

.task-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.creator-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: #fff7f8; */
  border-top: none !important;
  padding: 0 5px;
}

.task-card {
  background-color: #fcfbfb;
  padding: 10px;
}

.task-badge {
  background: #989696 !important;
  color: #fff !important;
}

/*--------------------------------------------
Project Detail
-------------------------------------------- */
.page-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 1rem;
}

.detail-card {
  background: var(--white-color);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.section-heading,
.modal-title {
  font-size: var(--fs-normal);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black-color);
  border-left: 4px solid var(--primary-color);
  padding: 10px;
  /* background-color: #ff39510a; */
  /* background: linear-gradient(to right, #ff39510a, #ffffff); */
  background: linear-gradient(90deg, #ff39510a 53%, #ffffff 95%);
}

.modal-title {
  margin-bottom: 0px;
}

.tag {
  background: rgba(0, 0, 0, 0.03);
  color: var(--black-color);
  border-radius: 20px;
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: 3px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.default-text {
  color: #212529;
}

.discussion-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
}

.discussion-item:last-child {
  border-bottom: none;
}

.discussion-item p {
  margin-bottom: 4px;
}

.project-meta span {
  display: inline-block;
  margin-right: 20px;
  font-size: var(--fs-sm);
  margin-bottom: 3px;
}

ul.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

ul.project-meta span,
ul.project-meta strong {
  margin-right: 0px;
  width: auto;
}

.project-meta .primary-text {
  color: var(--primary-color);
  font-weight: 500;
  font-size: var(--fs-md);
}

.upcomming-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0px;
}

.upcomming-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.upcomming-list li:last-child {
  border-bottom: 0px;
}

.upcomming-list li i {
  color: var(--primary-color);
}

.project-meta strong {
  color: var(--black-color);
  font-size: var(--fs-md);
  font-weight: 600;
  width: 100px;
  display: inline-block;
}

.goals-list .form-check {
  margin-bottom: 6px;
}

.project-documents .doc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

.project-documents .doc-item:last-child {
  border-bottom: none;
}

.doc-item i {
  color: var(--primary-color);
}

.profile-list img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: -8px;
  border: 2px solid #fff;
}

.project-status {
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(255, 57, 81, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.priority-badge {
  background: rgba(16, 171, 16, 0.1);
  color: var(--success);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.post-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.post-box input {
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 10px 15px;
  border-left: none;
}

.project-detail.profile-list img {
  width: 50px;
  height: 50px;
}

.bullet-list {
  list-style-type: disc;
  padding-left: 25px;
}

.milestone-dates {
  font-size: var(--fs-sm);
  display: inline;
}

.milestone-dates .date-label {
  font-weight: 500;
  color: #000;
}

/* ---------------------------------------------------
User role
---------------------------------------------------- */
.table-profile_box,
.profile-img_box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.table-profile_box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.table-profile_box img,
.profile-img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.btn-status {
  padding: 5px 10px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
}

.btn-status.active {
  background: #d7f4d7;
}

.btn-status.inactive {
  background-color: #ffd6d6;
}

.chart-content2 {
  display: none;
}

/* ------------------------------------------------
Tracking
------------------------------------------------- */
.kpi-card {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.kpi-card .kpi-left {
  display: flex;
  gap: 12px;
  align-items: center;
}

.kpi-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 18px;
}

.kpi-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
}

.kpi-label {
  font-size: 13px;
  color: var(--gray-600);
}

.chart-wrap {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table thead th {
  background: var(--thead-color);
  font-weight: 600;
  color: var(--gray-700);
  border: none;
}

.table tbody td {
  vertical-align: middle;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  white-space: nowrap;
}

.project-mini {
  padding: 12px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.project-mini:last-child {
  border-bottom: none;
}

.member-list {
  display: flex;
  align-items: center;
}

.member-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-right: -10px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.extra-members {
  background: #ddd;
  padding: 5px 8px;
  font-size: 12px;
  border-radius: 50%;
  margin-left: 5px;
}

.tech-progress {
  height: 8px;
  margin-top: 5px;
}

.project-stats {
  height: 300px;
  margin-top: auto;
}

.task-tabs .nav-tabs {
  gap: 20px;
  justify-content: center;
  border-bottom: 0px;
}

.task-tabs .nav-link.active,
.task-tabs .nav-link:hover {
  border: 1px solid var(--primary-color);
  color: var(--white-color);
  background-color: var(--primary-color);
}

.task-tabs .nav-link {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: var(--fs-md);
  font-weight: 500;
  padding: 7px 30px;
  transition: var(--transition-base);
}

.progress-bar.bg-primary {
  background-color: var(--primary-color) !important;
}

.progress-bar.bg-yellow {
  background-color: rgba(255, 193, 7, 1) !important;
}

/* -------------------------------------------------
Camera Zone
--------------------------------------------------- */
.zone-tab {
  margin-top: 30px;
}

.zone-tab .section-title {
  padding-bottom: 25px;
}

.zone-tab .nav-tabs {
  gap: 20px;
  justify-content: center;
  border-bottom: 0px;
}

.zone-tab .nav-link.active,
.zone-tab .nav-link:hover {
  border: 1px solid var(--primary-color);
  color: var(--white-color);
  background-color: var(--primary-color);
}

.zone-tab .nav-link {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: var(--fs-md);
  font-weight: 500;
  padding: 7px 30px;
  transition: var(--transition-base);
}

.incident-video {
  width: 100%;
  height: 300px;
  /* change as you like */
  object-fit: cover;
  /* maintain aspect ratio */
  border-radius: 6px;
}

.bb-primary {
  border-bottom: 1px solid #e7e4e5;
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.status-pending {
  background-color: #fff3cd !important;
  /* light yellow */
  color: #856404 !important;
}

.status-reviewed {
  background-color: #cce5ff !important;
  /* light blue */
  color: #004085 !important;
}

.status-accepted {
  background-color: #d4edda !important;
  /* light green */
  color: #155724 !important;
}

.status-rejected {
  background-color: #f8d7da !important;
  /* light red */
  color: #721c24 !important;
}

.surveilance-section .form-control {
  min-width: 200px !important;
}

.git-table th,
.git-table td {
  padding: 10px;
}

.nav-tabs {
  gap: 10px;
}

.nav-tabs .nav-link {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  font-size: var(--fs-sm);
  padding: 6px 10px;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
}

.nav-tabs .nav-link:focus {
  box-shadow: none;
}

.chat-empty-state {
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-content {
  height: -webkit-fill-available;
}

.btn-primary {
  text-wrap: nowrap;
}

.btn-col {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
}

.chart-wrapper {
  position: relative;
}

.chart-wrapper-tasks {
  height: 300px;
}

.chart-wrapper-efficiency,
.chart-wrapper-review {
  height: 300px;
}

.sub-title {
  margin-bottom: 0px;
}

.manager-chat-sidebar,
.manager-chat-box {
  height: 55vh !important;
}

.word-break {
  word-break: break-word;
}

/* -------------------------------------------------
DASHBOARD
------------------------------------------------ */
.card-header {
  background: #fff;
}

/* .employee-card {
  padding: 10px;
  border-radius: 10px;
}

.employee-card .employee-img_box {
  max-width: 200px;
  height: auto;
} */

.employee-slider-card {
  border: none;
}

.employee-slider-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.employee-slider-card .img-box {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid white;
  transition: all 0.3s ease;
  position: relative;
  margin: 0;
}

.employee-slider-card .img-box img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
}

/* 
.slider-title {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  width: 20px;
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
} */

.btn-premium.btn-sm {
  padding: 5px 14px;
  font-size: 14px;
}

/* 
.employee_card {
  overflow: hidden;
  border: none;
}

.employee_card .img-box img {
  border-radius: 50%;
}

.employee_card img {
  max-width: 200px;
  height: auto;
} */

.swiper {
  overflow: hidden;
}

.chart-card-header .section-heading,
.glass-card .section-heading {
  display: flex;
  justify-content: start;
  align-items: center;
  /* gap: 10px; */
  margin-bottom: 0px;
}

.chart-card-header .section-heading h4,
.glass-card .section-heading h4 {
  margin-bottom: 0px;
  line-height: normal;

}

.card-icon-wrapper {
  margin-right: 5px;
}

.card-icon-wrapper i {
  color: var(--primary-color);
}

.progress .progress-bar.bg-danger {
  background-color: rgb(255, 0, 0) !important;
}

.progress .progress-bar.bg-warning {
  background-color: rgba(255, 193, 7, 1) !important;
}
/* 
#kanban-container>div {
  flex: 0 0 100%;
  max-width: 100%;
} */

.employee-slider-card .flex-box {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between;
  padding: 20px 0 0;
}

.employee-slider-card .flex-box h5,
.employee-slider-card .flex-box p {
  text-align: end;
}

.employee-slider-card .flex-box .badge {
  margin-left: auto;
  width: 100%;
}

/* .employee-slider-card .flex-box {
  margin: auto;
  text-align: center;
  padding: 20px 0;
} */
.bg-green {
  background-color: #34c759 !important;
}

/* ------------------------------
Project and leave overview
------------------------------- */
.project-overview {
  padding-top: 10px;
}

.overview-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.stat {
  text-align: center;
  flex: 1;
  background-color: #f7f7f7;
  padding: 10px 5px;
}

.stat h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.open-count {
  color: #00a870;
}

.completed-count {
  color: var(--primary-color);
}

.hold-count {
  color: #ff9800;
}

.stat span {
  font-size: 14px;
  color: var(--gray-600);
}

.divider {
  width: 0px;
  height: 40px;
  margin: 0 3px;
  background: var(--gray-300);
}

.progress-wrapper {
  margin-top: 40px;
}

.progress-wrapper .btn-main {
  display: block;
}

.progress-bar-custom {
  position: relative;
  height: 36px;
  border-radius: 30px;
  border: 2px solid #ffd1d6;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #ffd8dd;
  border-radius: 30px 0 0 30px;
}

.progress-text {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.leave-summary {
  padding-top: 10px;
}

.leave-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat span {
  font-size: 14px;
  color: var(--gray-600);
}

.count-yellow {
  color: #ff9800;
}

.count-green {
  color: #28a745;
}

.count-red {
  color: var(--primary-color);
}

.leave-progress {
  border: 2px solid #ceebd6 !important;
}

.leave-progress .progress-fill {
  background: #e4feeb !important;
}

.card-flex-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: start;
}

.card-flex-box div.mb-3 {
  width: 100%;
}

.leave-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 6px;
  border: 1px solid var(--primary-color);
}

.emp-name {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.view-more {
  text-align: center;
  margin-top: 10px;
}

.leave-box {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.leave-today-swiper {
  margin-bottom: 18px;
  padding: 0 42px;
  border: 0 !important;
  position: relative;
}

.leave-today-swiper .swiper-wrapper,
.leave-today-swiper .swiper-slide,
.leave-today-swiper .leave-slider-card {
  border: 0 !important;
}

.leave-today-swiper .swiper-wrapper {
  align-items: center;
}

.leave-today-swiper .dashboard-swiper-pagination {
  display: none !important;
}

.leave-slider-card {
  border: none;
  background: transparent;
  box-shadow: none;
}

.leave-slider-card .flex-box {
  justify-content: flex-start;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

.leave-slider-card .img-box {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

.leave-slider-card .flex-box h5,
.leave-slider-card .flex-box p {
  text-align: left;
}

.leave-slider-card .status-badge {
  width: auto !important;
  margin-left: 0 !important;
}

.leave-today-controls {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin-top: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

.leave-today-nav {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 57, 81, 0.24);
  border-radius: 50%;
  background: #fff;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(255, 57, 81, 0.12);
  pointer-events: auto;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.leave-today-nav:hover,
.leave-today-nav:focus-visible {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 57, 81, 0.24);
}

.leave-today-nav:focus-visible {
  outline: 2px solid rgba(255, 57, 81, 0.25);
  outline-offset: 2px;
}

.leave-today-nav.swiper-button-disabled,
.leave-today-nav.swiper-button-lock {
  opacity: 0.45;
  pointer-events: none;
  box-shadow: none;
}

/* -----------------------------------------------
Recent Activity
----------------------------------------------- */
.activity-feed {
  position: relative;
  padding-left: 20px;
}

.activity-feed::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: rgba(0, 0, 0, 0.08);
}

.activity-item {
  position: relative;
  display: flex;
  gap: 0px;
  z-index: 1;
}

.activity-icon {
  width: 18px;
  height: 18px;
  background: white;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  flex-shrink: 0;
  margin-left: -17px;
}

.activity-content p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--black);
}

.activity-content small {
  font-size: 0.8rem;
  font-weight: 500;
}

.bg-primary-light {
  background-color: rgba(255, 57, 81, 0.1) !important;
}

.bg-success-light {
  background-color: rgba(101, 193, 92, 0.1) !important;
}

.bg-warning-light {
  background-color: rgba(247, 202, 66, 0.1) !important;
}

.bg-info-light {
  background-color: rgba(79, 172, 254, 0.1) !important;
}

.deadline-item {
  background: rgba(248, 249, 250, 0.5);
  border-radius: 16px;
  transition: all 0.3s ease;
}

/* .deadline-item:hover {
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
} */
.talent-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 12px;
  background: #f8f9fa;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.talent-card:hover {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.talent-avatar {
  position: relative;
  width: 45px;
  height: 45px;
}

.talent-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-indicator.online {
  background-color: #65c15c;
}

.status-indicator.away {
  background-color: #f7ca42;
}

.talent-info h6 {
  font-size: 0.9rem;
  font-weight: 700;
}

.talent-info p {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.btn-assign {
  margin-left: auto;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 8px;
  background: white;
  border: 1px solid #eee;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-assign:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.employee-slider-card .status-badge {
  border-radius: 6px !important;
  line-height: normal !important;
  padding: 3px 10px !important;
}

/* Dashboard swiper bullets should wrap so the fifth dot drops to the next line. */
.dashboard-swiper-pagination {
  position: static !important;
  transform: none !important;
  width: 54px !important;
  max-width: 100%;
  margin: 12px auto 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 6px 6px !important;
}

.dashboard-swiper-pagination .swiper-pagination-bullet {
  margin: 0 !important;
}

.topScoreSwiper .dashboard-swiper-pagination .swiper-pagination-bullet-active,
.attendanceSwiper .dashboard-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  opacity: 1 !important;
}

.topScoreSwiper .dashboard-swiper-pagination.swiper-pagination-lock,
.attendanceSwiper .dashboard-swiper-pagination.swiper-pagination-lock {
  display: flex !important;
}

.topScoreSwiper .dashboard-swiper-pagination .swiper-pagination-bullet:only-child,
.attendanceSwiper .dashboard-swiper-pagination .swiper-pagination-bullet:only-child {
  display: inline-block !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

#list-view-body .bg-info {
  line-height: normal !important;
  background-color: #51a147 !important;
  color: #fff !important;
}

#list-view-body .bg-danger {
  background-color: rgb(255 102 102) !important;
}

#list-view-body .bg-warning {
  background-color: rgb(236 181 15) !important;
  color: #fff !important;
}

.select2-container--default .select2-selection--single {
  border: var(--bs-border-width) solid var(--bs-border-color) !important;
}

.select2-container .select2-selection--single {
  height: 38px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #555;
  padding-left: 12px;
}

.approval-card {
  background: linear-gradient(135deg, #ff4b5c, #ff6b6b);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: start;
  /* flex-direction: column; */
  gap: 15px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.approval-icon {
  font-size: 22px;
  background: rgba(255, 255, 255, 0.2);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.approval-title {
  margin: 0 0 10px;
  font-weight: 600;
  color: var(--white-color);
}

.approval-text {
  margin: 2px 0 0;
  font-size: 14px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.approval-text a {
  color: var(--white-color);
  font-size: 14px;
  text-decoration: none;
}

.approval-text span {
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
}

.app-flex_box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.employee-slider-card h5 {
  font-size: 18px;
}

#list-view .nav-tabs .nav-link {
  padding: 5px 15px;
  font-size: 14px;
}

/* ----------- Overdue projects ---------------- */
.overdue-project-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.overdue-project-card .card-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-weight: 600;
}

.overdue-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.overdue-item:not(:last-of-type) {
  border-bottom: 1px solid #ffecec;
}

.project-name_sm {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.project-date {
  font-size: 12px;
  color: #888;
}

.overdue-days {
  background: #ffe6e6;
  color: #e74c3c;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.view-more {
  text-align: center;
  margin-top: 10px;
}

.icon-flexbox .icon-box {
  width: 30px;
  height: 30px;
  background: #eeeeee;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.icon-flexbox {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 5px;
}

.custom-col.col-xl-3 {
  width: 20%;
}

#tab-view .project-card {
  display: flex;
  flex-direction: column;
}

#tab-view .project-flex_box {
  margin-top: auto !important;
}

/* ---------------------------------
Changed UI Improvements
---------------------------------- */
.card-body {
  padding: 0px !important;
}

.profile-box1 {
  display: flex;
  align-items: center;
  gap: 10px;
}

a {
  text-decoration: none;
}

.card-title-lg {
  font-size: var(--fs-md);
}

.icon_box {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fee4e7;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

/* -----------------------------------------
Manager Approvals Redesign
------------------------------------------ */
.approval-tabs-container {
  background: #f8f9fa;
  padding: 8px;
  border-radius: 12px;
  display: flex;
  /* width: 100%; */
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
}

.custom-approval-tabs {
  border: none;
  gap: 8px;
  flex-wrap: wrap;
  overflow-x: auto;
  border-bottom: 1px solid #f7afaf;
  /* padding-bottom: 15px; */
}

.custom-approval-tabs .nav-item {
  margin: 0;
}

.custom-approval-tabs .nav-link {
  color: var(--primary-color);
  border-radius: 8px 8px 0 0;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--primary-color);
  border-bottom: none;
}

.custom-approval-tabs .nav-link i {
  color: var(--primary-color);
}

.plain-card .custom-approval-tabs .nav-link.active,
.plain-card .custom-approval-tabs .nav-link:hover {
  background: var(--primary-color) !important;
  color: var(--white-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  /* border-bottom: 5px solid var(--primary-color); */
}

.custom-approval-tabs .tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  margin-right: 8px;
  font-size: 14px;
}

.plain-card .custom-approval-tabs .nav-link.active .tab-icon.blue-icon {
  background: #e7f1ff;
  color: #0d6efd;
}

.plain-card .custom-approval-tabs .nav-link.active .tab-icon.lblue-icon {
  background: #e0f8f8;
  color: #0dcaf0;
}

.plain-card .custom-approval-tabs .nav-link.active .tab-icon.orange-icon {
  background: #fff3cd;
  color: #ffc107;
}

.plain-card .custom-approval-tabs .nav-link.active .tab-icon.green-icon {
  background: #d1e7dd;
  color: #198754;
}

.custom-approval-tabs .tab-count {
  background: #51a147 !important;
  color: #fff;
  border-radius: 12px;
  /* padding: 2px 8px; */
}
.approval-card_two {
  background: #fff;
  border-radius: 16px;
  /* padding: 20px; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f3f5;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}

.approval-card_two:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.approval-card_two .ac-header {
  padding: 20px;
  width: 100%;
  background: #f2f2f2;

}

.approval-card_two .ac-body {
  padding: 20px;
  width: 100%;
}

.approval-card_two .ac-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 3px;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.approval-card_two .ac-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.approval-card_two .ac-verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  color: #198754;
  background: #fff;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
}

.approval-card_two .ac-name {
  font-weight: 700;
  color: #2b3643;
}

.approval-card_two img {
  max-width: 100%;
  height: auto;
}

.ac-role {
  font-size: 12px;
}

.ac-level-badge {
  background: #ffc107;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 13px;
}

.ac-level-badge.level-4,
.ac-level-badge.level-5 {
  background: #f8f9fa;
  color: #495057;
  border: 1px solid #dee2e6;
}

.ac-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.bg-light-blue {
  background: #e7f1ff;
}

.bg-light-info {
  background: #cff4fc;
}

.bg-light-warning {
  background: #fff3cd;
}

.ac-project-name {
  font-size: 13px;
  font-weight: 600;
}

.ac-date {
  font-size: 12px;
}

.ac-status-text {
  letter-spacing: 0.5px;
}

.ac-status-bar {
  flex-grow: 1;
  height: 6px;
  background: #f1f3f5;
  border-radius: 3px;
  overflow: hidden;
}

.ac-status-progress {
  height: 100%;
  background: #dee2e6;
}

.ac-btn-outline-success {
  border: 1px solid #198754;
  color: #198754;
  background: transparent;
  font-weight: 600;
  border-radius: 8px;
}

.ac-btn-outline-success:hover {
  background: #198754;
  color: #fff;
}

.ac-btn-danger {
  background: #dc3545;
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid #dc3545 !important;
}

.ac-btn-danger:hover {
  background: transparent;
  color: #dc3545;
}

.custom-cards-row {
  margin-top: 15px;
}

.form-label_sm,
.form-select_sm {
  font-size: 14px;
}

.flex-1 {
  flex: 1;
}
.manager-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.manager-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
  border-color: var(--primary-color);
}

.manager-avatar-box {
  position: relative;
  margin-bottom: 20px;
}

.manager-avatar-lg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.manager-card:hover .manager-avatar-lg {
  transform: scale(1.05);
}

.manager-status-indicator {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 18px;
  height: 18px;
  background: #22c55e;
  border: 3px solid #fff;
  border-radius: 50%;
}

.manager-name {
  font-size: var(--fs-md);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.manager-role {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 18px;
  background: rgba(118, 75, 162, 0.08);
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
}

.manager-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  width: 100%;
}

.manager-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #64748b;
  justify-content: center;
}

.manager-contact-item i {
  color: #707070;
  width: 20px;
  font-size: 1rem;
}

.manager-contact-item a {
  color: #707070;
  text-decoration: none;
  transition: color 0.2s;
}

.manager-contact-item a:hover {
  color: #764ba2;
}

.manager-team-stats {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.manager-team-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6a6868;
  font-weight: 700;
  margin-bottom: 12px;
}

.manager-avatar-stack {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stack-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stack-img:first-child {
  margin-left: 0;
}

.stack-more {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -12px;
  background: #f1f5f9;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.manager-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding-top: 25px;
}

.btn-manager-action {
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

@media (max-width: 1400px) {
  .hero-stats-row,
  .premium-stat-card {
    gap: 10px;
  }

}

@media (max-width: 1200px) {
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero-stats-row {
    grid-template-columns: 1fr;
  }
}

.premium-stat-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 20px;
}

.premium-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.profile-hero-card .hero-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile-hero-card .hero-info h4 {
  margin: 0;
  font-size: var(--fs-md);
  font-weight: 700;
}

.profile-hero-card .hero-info p {
  margin: 0;
  color: var(--gray-600);
  font-size: var(--fs-sm);
}

.stat-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.icon-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.icon-green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.icon-orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.stat-value-box .stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.stat-value-box .stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--black-color);
  line-height: 1.2;
}

.view-switcher {
  display: flex;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 12px;
  gap: 4px;
}

.view-btn {
  border: none;
  background: transparent;
  padding: 8px 16px;
  border-radius: 8px;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.view-btn.active {
  background: #fff;
  color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.view-btn i {
  font-size: 1rem;
}

.employee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.employee-grid-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.employee-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 57, 81, 0.1);
}

.employee-grid-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.employee-grid-card:hover::before {
  opacity: 1;
}

.employee-card-avatar {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid #fff;
}

.employee-card-info h5 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black-color);
}

.employee-card-info .role {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.employee-card-info .email {
  font-size: 0.8rem;
  color: #707070;
  margin-bottom: 10px;
  display: block;
  word-break: break-all;
}

.employee-card-stats {
  display: flex;
  gap: 15px;
  margin-top: auto;
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}

.emp-stat-item {
  flex: 1;
}

.emp-stat-item .val {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black-color);
}

.emp-stat-item .lbl {
  display: block;
  font-size: 0.7rem;
  color: #707070;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.employee-card-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.employee-grid-card:hover .employee-card-actions {
  opacity: 1;
}

.btn-card-action {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--gray-600);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: none;
  transition: all 0.2s ease;
}

.btn-card-action:hover {
  background: var(--primary-color);
  color: #fff;
}

.status-badge-grid {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-active-grid {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.status-inactive-grid {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
/* ============================================
   PREMIUM TABLE DESIGN — Global Override
   ============================================ */
.table-responsive {
  border-radius: 0px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.table {
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  background: #ffffff;
}

.table thead th,
.table thead td {
  background: #f3f3f3 !important;
  color: #5a6478;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-top: none !important;
  white-space: nowrap;
  vertical-align: middle;
}

.table-light>*>* {
  background-color: #f8f9fc !important;
}

.table tbody tr {
  transition: background-color 0.18s ease, box-shadow 0.18s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.035) !important;
}

.table tbody tr:last-child {
  border-bottom: none !important;
}

.table tbody td {
  padding: 10px 18px;
  vertical-align: middle;
  color: #2d3748;
  border-color: rgba(0, 0, 0, 0.035) !important;
  font-size: 14px;
}

.table tbody td small {
  font-size: 14px;
}

.table-bordered> :not(caption)>*>* {
  border-color: rgba(0, 0, 0, 0.06) !important;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  background-color: rgba(0, 0, 0, 0.015) !important;
}

.table-sm thead th,
.table-sm tbody td {
  padding: 9px 14px;
}

.table .btn-view,
.table .btn-edit,
.table .btn-delete,
.table .btn-approval {
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 8px;
}

.table .badge {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.table .rounded-circle {
  box-shadow: 0 0 0 2px #fff;
}

.table td[colspan] {
  color: #aaa;
  font-style: italic;
  text-align: center;
  padding: 32px;
}

.dataTables_wrapper .dataTables_filter input {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 6px 12px;
  font-size: 13px;
}

.dataTables_wrapper .dataTables_length select {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 4px 10px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  border-radius: 8px !important;
  padding: 5px 12px !important;
  margin: 0 2px !important;
}

.profile-image img {
  max-width: 60px;
  height: auto;
}

.employee_search-box {
  position: relative;
  padding: 0px;
}

.employee_search-box input {
  padding-left: 30px;
}

.employee_search-box .search-icon {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  color: #999;
}

@media (max-width: 576px) {
  .employee-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   AI DASHBOARD REDESIGN (GRAND THEME)
   ========================================================================== */
.ai-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  padding: 60px 40px;
  border-radius: 24px;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(118, 75, 162, 0.15) 0%, transparent 75%);
  animation: pulse-ai-glow 10s infinite alternate;
}

@keyframes pulse-ai-glow {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }

  100% {
    transform: scale(1.15);
    opacity: 0.4;
  }
}

.ai-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  z-index: 2;
  position: relative;
  letter-spacing: -1.5px;
  background: linear-gradient(to right, #fff, #b2a8ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ai-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
  z-index: 2;
  position: relative;
  font-weight: 400;
}
.grand-nav-pills.nav-pills {
  background: rgba(0, 0, 0, 0.04);
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: inline-flex;
  gap: 6px;
  margin: 10px 0;
}

.grand-nav-pills .nav-link {
  border-radius: 14px;
  padding: 12px 28px;
  color: #64748b;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none !important;
  background: transparent !important;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.grand-nav-pills .nav-link i {
  font-size: 1.2rem;
  opacity: 0.6;
}

.grand-nav-pills .nav-link:hover {
  background: rgba(0, 0, 0, 0.06) !important;
  color: #1e293b !important;
}

.grand-nav-pills .nav-link.active {
  background: #fff !important;
  color: var(--primary-color) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1) !important;
}

.grand-nav-pills .nav-link.active i {
  color: var(--white-color) !important;
  opacity: 1;
}
/* ==========================================================================
   7. AI DASHBOARD PREMIUM UI
   ========================================================================== */
.ai-dashboard {
  background-color: #f8fafc;
  min-height: 100vh;
  font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

.ai-hero-glass {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 60px 40px;
  border-radius: 24px;
  margin-bottom: -40px;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.ai-hero-glass::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 57, 81, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.ai-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.ai-hero-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.grand-nav-pills {
  background: #fff;
  display: inline-flex;
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: -30px;
  position: relative;
  z-index: 10;
  border: 1px solid #e2e8f0;
}

.grand-nav-pills .nav-link {
  border-radius: 40px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #64748b;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.grand-nav-pills .nav-link i {
  font-size: 1.1rem;
}

.grand-nav-pills .nav-link.active {
  background: #ff3951 !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(255, 57, 81, 0.3);
}
.ai-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  padding: 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s, box-shadow 0.3s;
}

.ai-card:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.ai-pulse-icon {
  width: 50px;
  height: 50px;
  background: #fff1f2;
  color: #ff3951;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
}

.ai-pulse-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  border: 2px solid #ff3951;
  opacity: 0.5;
  animation: pulse-ai 2s infinite;
}

@keyframes pulse-ai {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.ai-tab-container {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
}

.recommendation-item-premium {
  border-left: 4px solid #e2e8f0;
  background: #f8fafc;
  padding: 15px 20px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.recommendation-item-premium:hover {
  background: #f1f5f9;
  border-left-color: #ff3951;
}

.health-score-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 8px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  position: relative;
}

.health-score-value {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
}
.standup-fab {
  position: fixed;
  top: 35%;     
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none !important;
  outline: none !important;
  background: var(--primary-color); 
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: transform 0.3s ease;
}

.standup-fab:hover {
  transform: translateY(-3px);
}
.desc-box{
    background: #f4f4f4;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}
  .sub-card {
        background: #fff;
        border: 1px solid #f0f0f5;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    }
      .sub-card .sub-heading{
           padding: 10px 15px 5px;
    font-size: 16px;
        color: #5a5656;
      }
       .sub-card .sub-heading i{
        color: var(--primary-color);
       }
       #board-view > .col {
    min-width: 360px !important;
    max-width: 360px !important;
    flex: 0 0 360px !important;
    width: 360px !important;
}
#board-view {
    width: 100%;
    min-width: max-content; 
}
#list-view{
    width: 100%;
}
/* -----------------------------------
Responsive 
------------------------------------ */
@media (max-width: 1700px) {
  .custom-col.col-xl-3 {
    width: 25%;
  }

  .custom-col.col-xl-3 .date-box {
    flex-direction: column;
  }
}

@media (max-width: 1600px) {
  .project-title {
    gap: 10px;
  }

  .project-card {
    padding: 14px;
  }

  .project-name {
    font-size: 18px;
  }

  .status-badge {
    padding: 4px 12px;
  }

  .status-card .status-icon {
    width: 60px;
    height: 60px;
  }

  .status-card .status-icon i {
    font-size: 25px;
  }

  .status-card {
    padding: 20px;
  }

  .profile-card-h .icon-flex-box {
    padding: 10px 20px;
  }

  .profile-card-h {
    gap: 8px;
  }

  .profile-card-h .profile-content {
    gap: 30px;
  }

  .contact {
    padding: 9px 5px 8px;
  }

  .chat-sidebar {
    padding: 10px;
  }

  .managers-profile_box1 {
    width: 100%;
  }

  .managers-profile_box2 {
    display: flex;
    margin-top: 20px;
    width: 100%;
    gap: 20px;
  }

  .managers-profile_box2 .personal-info-card,
  .managers-profile_box2 .team-members-card {
    width: 50%;
    height: 100%;
  }

  .kanban-column {
    padding: 5px;
  }

  /* 
  .profile-donut-container {
    width: 70%;
    margin: auto;
  } */

  .profile-box1 {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .profile-box1 .img-box {
    width: 50px;
  }

  .employee-slider-card .img-box {
    width: 100px;
    height: 100px;
  }

  .rank-badge {
    padding: 4px 10px;
  }

  .btn-premium.btn-sm {
    padding: 5px 10px;
  }
}

@media (max-width: 1500px) {
  .header .navbar-nav .nav-link {
    margin-right: 5px;
  }

  .profile-body .contact-info .flex-box {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  .profile-body .contact-info .flex-box p {
    margin-bottom: 5px;
  }

  .profile-card-h .profile-content {
    gap: 15px;
  }

  .profile-card-h {
    gap: 5px;
  }

  .profile-card-h .flex-box {
    gap: 25px;
  }

  .task-date-label {
    padding: 6px;
  }


  .task-dates {
    gap: 7px;
  }

  .custom-col.col-xl-2 {
    width: 20%;
  }

  .dashboard-card .card-body {
    gap: 10px;
  }

  .leave-profile img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 1400px) {
  /* .dashboard-card {
    padding: 0px;
  } */

  .dashboard-card h4 {
    margin-bottom: 0px;
  }

  /* 
  .dashboard-card .img-box {
    width: 70px;
    height: 70px;
  } */

  .dashboard-card .img-box i {
    font-size: 28px;
  }

  .dashboard-card p {
    font-size: var(--fs-sm);
  }

  .header .dropdown-navbar {
    gap: 0px;
  }

  .header .navbar-nav .nav-link {
    margin-right: 0px;
    padding: 5px 7px;
    font-size: 14px;
  }

  .header .logo {
    height: 30px !important;
    width: auto !important;
  }

  .project-icon {
    width: 40px;
    height: 40px;
  }

  .project-icon i {
    font-size: var(--fs-lg);
  }

  .project-title {
    align-items: start;
  }

  .status-card p {
    font-size: 14px;
  }

  .project-summery {
    width: 300px !important;
  }

  .kanban-column {
    padding: 0px;
  }

  .contact-info p {
    flex-wrap: wrap;
  }

  .btn-profile {
    padding: 7px 11px;
    font-size: 12px;
  }

  .profile-card-h {
    /* flex-direction: column; */
    /* align-items: flex-start; */
    gap: 0px;
    text-align: center;
  }

  .profile-card-h .profile-content {
    order: 1;
    width: 100%;
    justify-content: center;
  }

  .profile-card-h .chart-content {
    order: 2;
    width: 100%;
  }

  .profile-card-h .ord-3 {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .profile-card-h .flex-box {
    margin-left: 0;
    justify-content: center;
  }

  .managers-profile_box1 .profile-card-h {
    flex-direction: row;
    align-items: center;
  }

  .managers-profile_box1 .profile-card-h .ord-3 {
    order: 2;
  }

  .managers-profile_box1 .profile-details small {
    text-align: start;
  }

  .managers-profile_box1 .profile-card-h .profile-content {
    justify-content: start;
  }

  .chart-content {
    display: none !important;
  }

  .progress-content {
    display: block !important;
    width: 100%;
    order: 3;
  }

  .managers-profile_box1 .progress-content {
    display: none !important;
  }

  .profile-card-h .progress {
    width: 50%;
    margin: auto;
  }

  .status-card h6 {
    font-size: var(--fs-lg);
  }

  .managers-profile_box1 .chart-content {
    display: inline !important;
  }

  .sprint-detail_section .dashboard-card h4 {
    font-size: var(--fs-lg);
  }

  /* .chat-contact_info {
    padding-left: 18px;
  } */
  .approval-text {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .activity-icon {
    margin-right: 8px;
  }

  .custom-col.custom-col.col-lg-4 {
    width: 33.33%;
  }

  .profile-hero-card .hero-avatar {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 1200px) {
  .task-summary {
    /* flex-direction: column;
  align-items: start; */
    gap: 10px;
  }

  .task-summary .content-box_two {
    gap: 0;
    margin-left: 10px;
  }

  .project-summery {
    width: 270px !important;
  }

  .header .navbar-nav .nav-item {
    justify-content: start;
    margin: 3px 0;
    align-items: start;
  }

  .task-tabs .nav-tabs,
  .zone-tab .nav-tabs {
    gap: 10px;
  }

  .task-tabs .nav-link {
    font-size: var(--fs-sm);
  }

  .chart-content {
    display: none !important;
  }

  .sprint-detail_section .dashboard-card h4 {
    font-size: 20px;
  }

  .text-flex_box {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 7px;
  }

  .task-item .default-text span {
    display: block;
  }

  .task-item .default-text .divider {
    display: none;
  }

  .message.me img {
    max-width: 200px;
  }

  .milestone-dates {
    display: block;
  }

  .milestone-dates .date-label {
    margin-left: 0px !important;
  }

  .profile-card-h {
    gap: 0;
  }

  .header {
    min-height: 60px;
  }

  .custom-col.col-lg-3 {
    width: 25%;
  }

  /* .chart-canvas {
    margin-top: 30px;
  } */

  .employee-slider-card .img-box {
    width: 120px;
    height: 120px;
  }

  .card-flex-box {
    gap: 0px;
  }
}

@media (max-width: 992px) {
  .header {
    padding: 0px;
    min-height: auto;
  }

  .header.sticky {
    min-height: auto;
  }

  .header .dropdown-menu {
    position: absolute;
    left: 0px;
    right: auto;
    min-width: 250px;
  }

  .header .dropdown-menu .dropdown-item {
    white-space: wrap;
  }

  .date-box {
    flex-direction: row;
    justify-content: space-between;
  }

  .project-summery {
    width: 300px !important;
  }

  .profile-body .contact-info .flex-box {
    flex-direction: row;
    gap: 5px;
  }

  .profile-card-h .progress {
    width: 80%;
  }

  /* .managers-profile_box1 .profile-card-h,
  .profile-card-h .profile-content {
    flex-direction: column;
  } */

  .managers-profile_box1 .profile-details small {
    text-align: center;
  }

  .managers-profile_box1 .chart-content {
    display: none !important;
  }

  .managers-profile_box1 .progress-content {
    display: block !important;
    width: 70%;
  }

  .plain-card .nav-pills .nav-link .contact-info small {
    margin-left: 0;
  }

  .chat-sidebar .contact-info {
    max-width: 120px;
  }

  .plain-card .nav-pills .nav-link small {
    margin-left: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 30%;
    display: block;
  }

  .managers-profile_box2 {
    flex-direction: column;
    gap: 0;
  }

  .personal-info-card,
  .team-members-card {
    width: 100%;
  }

  .managers-profile_box2 .personal-info-card,
  .managers-profile_box2 .team-members-card {
    width: 100%;
  }

  .kanban-badge {
    width: 25px;
    height: 25px;
    font-size: var(--fs-sm);
  }

  .text-flex_box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .chat-section .table-profile_box {
    width: 45px;
    height: 45px;
  }

  .chat-section .plain-card .nav-pills .nav-link small {
    margin-left: 0px;
  }

  /* .chat-contact_info {
    padding-left: 15px;
  } */

  .chat-section .plain-card .nav-pills .nav-link small {
    width: 100%;
  }

  .chat-section .search-box input {
    padding: 2px 12px;
  }

  .chat-section .search-box input::placeholder {
    font-size: var(--fs-sm);
  }

  .task-summary .content-box_two {
    gap: 5px;
  }

  .chat-header .default-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 200px;
    display: inline-block !important;
  }

  .custom-col.col-md-4 {
    width: 33.33333333%;
  }

  .dashboard-card {
    padding: 18px;
  }

  .glass-card.p-4 {
    padding: 15px !important;
  }

  .chart-card-header .section-heading,
  .glass-card .section-heading {
    margin-bottom: 10px !important;
  }

  .dashboard-card .content-box h4 {
    font-size: 30px;
  }

  .custom-col.custom-col.col-lg-4 {
    width: 50%;
  }
    .kanban-scroll-container::-webkit-scrollbar {
  width: 10px;
}
}

@media (max-width: 768px) {
  .task-summary {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }

  .task-summary .content-box_two {
    margin-left: 0px;
    align-items: end;
    text-align: end;
  }

  .contact-info p {
    justify-content: center;
  }

  .profile-body .contact-info .flex-box {
    justify-content: center;
    align-items: center;
  }

  .managers-profile_box1 .progress-content {
    width: 80%;
  }

  .table-profile_box,
  .profile-img_box {
    width: 45px;
    height: 45px;
  }

  .managers-profile_box1 .search-box input {
    padding: 5px 10px;
    font-size: 12px;
  }

  .managers-profile_box1 .search-box {
    padding: 0px 0 10px;
  }

  .managers-profile_box1 .chat-sidebar .contact-info {
    display: none;
  }

  .managers-profile_box1 .plain-card .nav-pills .nav-link small {
    display: none;
  }

  .chat-sidebar h5 {
    font-size: 12px;
    padding: 5px;
  }

  .managers-profile_box1 .search-box input::placeholder {
    font-size: 10px;
  }

  .contact {
    justify-content: center;
  }

  #chatTabContent,
  #chatTabContent .tab-pane,
  .managers-profile_box1 .chat-box,
  .managers-profile_box1 .chat-sidebar {
    height: 100%;
  }

  .contact img {
    margin-right: 0px;
  }

  .plain-card-body {
    padding: 0px;
  }

  .section-title {
    margin-bottom: 15px;
  }

  .status-card h3 {
    font-size: 25px;
  }

  .status-card h6 {
    font-size: 16px;
  }

  .task-tabs .nav-link,
  .zone-tab .nav-link {
    font-size: var(--fs-sm);
    padding: 5px 20px;
  }

  .task-dates {
    flex-direction: row;
    align-items: center !important;
    gap: 6px;
  }

  .chat-section .chat-sidebar h5 {
    font-size: var(--fs-lg);
    margin-bottom: 0px;
  }

  .p-col {
    padding: 0px;
  }

  .milestone-detail_section .content-box {
    text-align: end;
  }

  .message {
    width: 60%;
  }

  .chart-wrapper-tasks {
    height: 250px;
  }

  .chart-wrapper-efficiency,
  .chart-wrapper-review {
    height: 250px;
  }

  .sidebar-col {
    width: 20%;
  }

  .chat-content_col {
    width: 80%;
  }

  .chat-header {
    padding: 10px;
  }

  .custom-col.col-sm-6 {
    width: 50%;
  }

  .dashboard-card .content-box h4 {
    font-size: 28px;
  }

  .score-col {
    display: flex;
    align-items: start;
    gap: 10px;
  }

  .score-col .glass-card {
    flex: 1;
  }

  .custom-col.custom-col.col-md-6 {
    width: 100%;
  }

  .custom-approval-tabs .nav-link {
    border-bottom: 1px solid var(--primary-color);
    padding: 6px 8px;
    font-size: 12px;
  }

  .approval-tabs-container {
    padding: 0px;
  }

  .profile-card-h .flex-box,
  .managers-profile_box1 .profile-card-h .profile-content {
    flex-direction: column;
  }
  .profile-card-h .flex-box,
  .managers-profile_box1 .profile-card-h .profile-content {
    flex-direction: column;
  }
.standup-fab{
  top: 32% ;
}
.sub-card .sub-heading{
  font-size: 14px;
}
.plain-card.admin-card label,
.footer p{
  font-size: 14px;;
}
.plain-card .flex-box{
  flex-wrap: wrap;
}
}

@media (max-width: 576px) {
  main {
    padding: 20px 5px;
  }

  body {
    font-size: var(--fs-sm);
  }

  .header .logo {
    width: auto;
    height: 20px !important;
  }

  .common-table tbody tr td i {
    font-size: 12px;
  }

  .btn-view,
  .btn-view:focus,
  .btn-edit,
  .btn-edit:focus,
  .btn-delete,
  .btn-delete:focus,
  .btn-approval,
  .btn-approval:focus {
    padding: 2px 8px;
  }

  .section-title h3 {
    font-size: var(--fs-lg);
  }

  .project-header {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .date-box .small strong {
    display: block;
  }

  .project-card .btn-outline,
  .status-badge {
    font-size: 12px;
  }

  .kanban-column,
  .kanban-header {
    padding: 5px !important;
  }

  .kanban-badge {
    width: 20px;
    height: 20px;
    font-size: var(--fs-sm);
  }

  .plain-card-body,
  .plain-card .card-body {
    padding: 0px;
  }

  .common-table {
    margin-bottom: 0px;
  }

  .form-card {
    padding: 13px;
  }

  .message {
    width: 70%;
  }

  .message.me img {
    max-width: 150px;
  }

  .form-control::placeholder,
  .form-select,
  input[type="date"] {
    font-size: var(--fs-sm);
  }

  .header .navbar-nav .nav-item {
    margin: 0px 0;
  }

  .profile-card-h .progress {
    width: 100%;
  }

  .profile-card-h .flex-box,
  .profile-card-h .profile-content {
    flex-direction: column;
    width: 100%;
  }

  .profile-card-h .icon-flex-box {
    width: 100%;
    justify-content: space-between;
  }

  .info-list li {
    gap: 0;
  }

  .section-heading {
    padding: 5px;
    font-size: var(--fs-md);
  }

  .card-title-sm {
    font-size: var(--fs-sm);
  }

  .kanban-header .card-title-sm,
  .project-name {
    font-size: var(--fs-md);
  }

  .chat-input button {
    width: 35px;
    height: 35px;
  }

  .chat-input button i {
    font-size: 12px;
  }

  .chat-input input {
    padding: 6px 10px;
  }

  .message {
    padding: 7px 10px;
    font-size: 13px;
  }

  .table-profile_box,
  .profile-img_box {
    width: 40px;
    height: 40px;
  }

  .chat-messages,
  .chat-input,
  .chat-header {
    padding: 10px 5px;
  }

  .profile-card-h .icon-flex-box .img-box {
    width: 50px;
    height: 50px;
  }

  .profile-card-h .icon-flex-box i {
    font-size: var(--fs-lg);
  }

  .profile-details h5 {
    font-size: var(--fs-lg);
  }

  .profile-details small,
  .profile-card-h .flex-box span {
    font-size: var(--fs-md);
  }

  .edit-icon {
    width: 30px;
    height: 30px;
  }

  .edit-icon i {
    font-size: var(--fs-sm);
  }

  .managers-profile_box1 .progress-content {
    width: 100%;
  }

  .profile-card-h {
    padding: 15px;
    gap: 15px;
  }

  .contact {
    padding: 2px;
  }

  .chat-sidebar {
    padding: 8px;
  }

  .chat-sidebar .icon-box {
    display: block;
  }

  /* 
  .chat-sidebar h5,
  .managers-profile_box1 .search-box input {
    display: none;
  } */
  .team-members-card .member-img {
    width: 40px;
    height: 40px;
    margin-right: 5px !important;
  }

  .team-members-card ul li span {
    font-size: 10px;
  }

  .team-members-card .card-title-sm {
    font-size: 12px;
  }

  .task-stats-card,
  .personal-info-card,
  .plain-card,
  .team-members-card {
    padding: 15px !important;
  }

  .post-box {
    gap: 10px;
  }

  .tag {
    font-size: 12px;
  }

  .card-title-lg,
  .task-title {
    font-size: var(--fs-md);
  }

  .dashboard-card h4 {
    font-size: 22px;
  }

  .chat-sidebar {
    padding: 5px !important;
  }

  .form-control {
    font-size: 12px;
    padding: 6px 2px;
    text-wrap: nowrap;
  }

  .span-box span {
    align-items: start;
    gap: 3px;
    flex-direction: column;
  }

  .text-flex_box {
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }

  .sprint-detail_section .dashboard-card h4 {
    font-size: 18px;
  }

  .dashboard-card .img-box i {
    font-size: 22px;
  }

  .dashboard-card .img-box {
    width: 50px;
    height: 50px;
  }

  .chat-section .contact {
    padding: 6px 0px;
  }

  .chat-section .table-profile_box {
    width: 40px;
    height: 40px;
  }

  .chat-section .search-box {
    padding: 10px 0px;
  }

  .chat-section .chat-sidebar h5 {
    font-size: var(--fs-sm);
  }

  .chat-section .search-box input::placeholder {
    font-size: 12px;
  }

  .chat-section .search-box input {
    padding: 2px 6px;
  }

  .input-group-text {
    padding: 5px;
    font-size: var(--fs-sm);
  }

  ul.project-meta {
    gap: 10px;
  }

  .profile-list p {
    margin-bottom: 0px;
  }

  .task-item {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }

  .milestone-detail_section .btn-outline {
    padding: 3px 10px;
    font-size: 11px;
  }

  .milestone-detail_section .dashboard-card h4 {
    font-size: 20px;
  }

  .project-meta .primary-text {
    font-size: var(--fs-sm);
  }

  .project-detail.profile-list img {
    width: 45px;
    height: 45px;
  }

  .btn-outline-secondary {
    padding: 2px 6px;
    font-size: 14px;
  }

  .btn-outline-secondary i {
    font-size: 12px;
  }

  .post-img_box img {
    max-width: 200px;
  }

  .post-box .input-group-text {
    padding-left: 10px;
  }

  .incident-video {
    height: 200px;
  }

  .img-clip img {
    max-height: 150px;
  }

  .kanban-scroll-container>.col {
    min-width: 90vw;
  }

  .login-card {
    padding: 10px;
  }

  .login-card .logo img {
    width: 230px;
  }

  .message .message-avatar {
    width: 25px;
    height: 25px;
  }

  .chat-empty-state h4 {
    font-size: var(--fs-lg);
  }

  .chat-bottom .btn-primary {
    padding: 5px 7px;
    font-size: 12px;
  }

  .chat-bottom .btn-light {
    padding: 5px 7px;
    font-size: 12px;
  }

  /* 
  .dashboard-card .content-box {
    text-align: end;
  } */

  .dashboard-card .btn-primary {
    font-size: 14px;
  }

  .btn-col {
    flex-direction: column;
    justify-content: start;
    align-items: self-start;
  }

  .sub-title {
    font-size: var(--fs-md);
  }

  .page-header {
    padding: 20px !important;
  }

  .chat-header .default-text {
    width: 100px;
  }

  .profile-img-wrapper,
  .profile-img-wrapper .profile-img {
    width: 100px;
    height: 100px;
  }

  .custom-col.col-sm-6 {
    width: 50%;
  }

  .employee-slider-card .img-box {
    width: 150px;
    height: 150px;
  }

  .btn-premium.btn-sm {
    padding: 5px 15px;
    font-size: 12px;
  }

  .score-col {
    display: block;
  }

  .employee-slider-card h5 {
    font-size: 14px;
  }

  .chart-card-header .section-heading h4,
  .glass-card .section-heading h4 {
    font-size: 16px;
  }

  .stat h3 {
    font-size: 20px;
  }

  .stat span {
    font-size: 12px;
  }

  .progress-bar-custom {
    height: 25px;
  }

  .progress-text {
    font-size: 12px;
  }

  .activity-item {
    margin-bottom: 10px;
  }

  .activity-content p,
  .project-name_sm {
    font-size: 14px;
  }

  .approval-card {
    padding: 12px 20px;
  }

  .nav-tabs .nav-link {
    font-size: 14px;
    padding: 3px 10px;
  }

  .ac-btn-danger,
  .ac-btn-outline-success {
    font-size: 14px;
  }

  .btn-sm.btn-main,
  .btn-sm.btn-outline-secondary,
  .btn-outline,
  .btn-main {
    padding: 6px 12px;
    font-size: 10px;
  }

  .nav-tabs {
    margin-bottom: 10px;
  }

  .ai-tab-container {
    padding: 0px;
  }
   .standup-fab {
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        gap: 0;
  }

  .standup-fab::after {
    content: "";
  }
  .btn-warning,
  .standup-fab{
    font-size: 14px;
  }
  .alert {
    font-size: 13px;
}
#board-view > .col {
    min-width: 330px !important;
    max-width: 330px !important;
    flex: 0 0 330px !important;
    width: 330px !important;
}
.kanban-scroll-container::-webkit-scrollbar {
  width: 8px;
}
.employee-card-avatar {
    width: 70px;
    height: 70px;
}
.employee-card-info h5{
  font-size: 16px;
}
.employee-card-info .role{
  font-size: 12px;
}
}

@media (max-width: 480px) {
  .project-summery {
    width: 260px !important;
  }

  .content-box_two .badge {
    font-size: 10px;
  }

  .info-list li {
    font-size: 12px;
  }

  .task-summary .content-box_two {
    align-items: start;
    text-align: start;
  }

  .task-summary {
    flex-direction: column;
    align-items: start;
  }

  .profile-actions {
    flex-direction: column;
  }

  .btn-profile {
    width: 100%;
  }

  .message {
    width: 85%;
  }

  .message.me img {
    max-width: 100px;
  }

  .team-members-card .btn-profile,
  .personal-info-card .btn-profile,
  .plain-card .btn-profile,
  .task-stats-card .btn-profile {
    width: auto;
    padding: 6px 7px;
    font-size: 12px;
  }

  .project-meta strong {
    font-size: var(--fs-sm);
  }

  .profile-body {
    text-align: center;
    padding: 60px 10px 20px;
  }

  .task-tabs .nav-link,
  .zone-tab .nav-link {
    font-size: var(--fs-sm);
    padding: 5px 10px;
  }

  .upcomming-list li {
    flex-direction: column;
    align-items: start !important;
    gap: 5px;
  }

  .milestone-dates {
    display: inline;
  }

  .milestone-dates .date-label {
    margin-left: 5px !important;
  }

  .info-list li strong {
    width: 80px;
  }

  .info-list i {
    font-size: var(--fs-sm);
  }

  .chat-sidebar {
    padding: 3px !important;
  }

  .p-col {
    display: none;
  }


  .chat-section .chat-sidebar h5 {
    font-size: 11px;
  }

  .chat-section .table-profile_box {
    margin: auto;
  }

  .task-board-section .project-card {
    padding: 10px 5px;
  }

  .task-board-section .kanban-body {
    padding: 0px;
  }

  .fc-direction-ltr .fc-toolbar>*> :not(:first-child) {
    margin-left: 4px;
  }

  .fc-toolbar-chunk {
    display: flex;
  }

  #directChatsSection h6,
  #groupChatsSection h6 {
    font-size: 10px !important;
  }

  .chat-header .chat-avatar {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }

  .sidebar-col {
    width: 20%;
    ;
  }

  .chat-content_col {
    width: 80%;
  }

  .chat-section .table-profile_box {
    margin: auto;
    justify-content: start;
    width: fit-content;
  }

  .custom-col.col-12 {
    width: 100%;
  }

  .employee-slider-card .img-box {
    width: 100px;
    height: 100px;
  }

  .profile-card-h,
  .managers-profile_box1 .profile-card-h {
    flex-direction: column;
  }

  .task-info {
    flex-direction: column;
  }
    .standup-fab{
  top: 30% ;
}
.common-table thead tr th{
  font-size: 10px;
      padding: 12px 12px;
}
.modal-header,
.modal-body{
  padding: 10px;
}
.modal-footer{
  padding: 0 10px 10px;
}
}
