


@charset "UTF-8";
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Gothic A1", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #334155;
  background-color: #dcdfea;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(15, 23, 42, 0);
}

h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, blockquote, pre {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

a {
  color: #dc2626;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  color: #b21d1d;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

:focus {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

::-moz-selection {
  background-color: rgba(220, 38, 38, 0.2);
  color: #0f172a;
}

::selection {
  background-color: rgba(220, 38, 38, 0.2);
  color: #0f172a;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}

body {
  font-weight: 500;
  font-family: "Gothic A1", sans-serif;
  font-size: 0.9rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.lead {
  font-size: 1rem;
  font-weight: 500;
  color: #475569;
}

.text-muted {
  color: #64748b !important;
}

.text-small {
  font-size: 0.75rem;
}

.text-xs {
  font-size: 0.625rem;
}

.fw-normal {
  font-weight: 500;
}

.fw-medium {
  font-weight: 600;
}

.fw-semibold {
  font-weight: 700;
}

.fw-bold {
  font-weight: 800;
}

.app-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
}


.app-container .container-fluid {

  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 3rem;
}

.main-content {
  margin-left: 220px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: margin-left 0.3s ease;
}
@media (max-width: 991.98px) {
  .main-content {
    margin-left: 0;
  }
}

.content-area {
  flex: 1;
  padding: 2rem;
  overflow-x: auto;
}
@media (max-width: 767.98px) {
  .content-area {
    padding: 1rem;
  }
}

.page-content {
  animation: fadeIn 0.3s ease-in;
} */
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 992px) {
  .mobile-overlay {
    display: none;
  }
}

.sidebar {
  width: 220px;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1030;
  background-color: #21253f;
  border-right: none;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 991.98px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.show {
    transform: translateX(0);
  }
}

.sidebar-header {
  height: 100px;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.sidebar-header .sidebar-logo {
  height: 70px;
  width: auto;
}

.sidebar-nav {
  padding: 0;
  height: calc(100vh - 70px - 30px);
  overflow-y: auto;
}
.sidebar-nav .nav {
  flex-direction: column;
  gap: 0.25rem;
}
.sidebar-nav .nav-item {
  width: 100%;
}
.sidebar-nav .nav-link {
  color: rgba(245, 245, 245, 0.9);
  padding: 0.75rem 1rem;
  margin-bottom: 0.25rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.sidebar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
}
.sidebar-nav .nav-link.active {
  background-color: #dc2626;
  color: #ffffff;
}
.sidebar-nav .nav-link i {
  width: 20px;
  text-align: center;
}
.sidebar-nav .nav-link .me-2 {
  margin-right: 0.75rem;
}
.sidebar-nav hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-toggle {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1031;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  display: none;
}
@media (max-width: 991.98px) {
  .sidebar-toggle {
    display: block;
  }
}
.sidebar-toggle:hover {
  background-color: #f8fafc;
}

.sidebar-collapsed {
  width: 70px;
}
.sidebar-collapsed .sidebar-header {
  justify-content: center;
}
.sidebar-collapsed .sidebar-header .sidebar-logo {
  height: 32px;
}
.sidebar-collapsed .sidebar-nav .nav-link {
  justify-content: center;
  padding: 0.75rem 0.5rem;
}
.sidebar-collapsed .sidebar-nav .nav-link span {
  display: none;
}
.sidebar-collapsed .sidebar-nav .nav-link .me-2 {
  margin-right: 0;
}
.sidebar-collapsed + .main-content {
  margin-left: 70px;
}

.menu-primary {
  margin-top: 1em;
}
.menu-primary a {
  padding: 10px 10px 10px 30px;
  display: block;
  transition: all 0.2s;
}
.menu-primary a:link, .menu-primary a:visited {
  color: #fff;
  text-decoration: none;
}
.menu-primary i {
  width: 1.5em;
}
.menu-primary a:hover {
  background-color: #000;
  color: #50e137;
}

.main-header {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}
@media (max-width: 767.98px) {
  .main-header {
    padding: 0 1rem;
  }
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.user-dropdown .dropdown-toggle {
  background: none;
  border: none;
  color: #475569;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}
.user-dropdown .dropdown-toggle:hover {
  background-color: #f1f5f9;
  color: #334155;
}
.user-dropdown .dropdown-toggle::after {
  margin-left: 0.5rem;
}
.user-dropdown .dropdown-menu {
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0.75rem;
  padding: 0.5rem;
  min-width: 180px;
}
.user-dropdown .dropdown-menu .dropdown-item {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  transition: all 0.2s ease;
}
.user-dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #f1f5f9;
  color: #334155;
}
.user-dropdown .dropdown-menu .dropdown-divider {
  margin: 0.5rem 0;
  border-color: #e2e8f0;
}

@media (max-width: 991.98px) {
  #sidebarToggle {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1032;
    background-color: #21253f !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0 0 0.5rem 0;
    padding: 0.9rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  #sidebarToggle:hover, #sidebarToggle:focus {
    background-color: #0f111e !important;
    color: #ffffff !important;
  }
  #sidebarToggle i {
    font-size: 1.2rem;
  }
}

.header-actions .nav-pills .nav-item {
  margin: 0;
}
.header-actions .nav-pills .nav-link {
  color: #475569;
  background: none;
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.header-actions .nav-pills .nav-link:hover {
  background-color: #f1f5f9;
  color: #334155;
}
.header-actions .nav-pills .nav-link:focus {
  outline: none;
}
.header-actions .nav-pills .nav-link i {
  font-size: 0.875rem;
}
@media (max-width: 767.98px) {
  .header-actions .nav-pills {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 0.5rem;
    display: none;
  }
  .header-actions .nav-pills.show {
    display: flex;
  }
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #64748b;
}
.breadcrumb-nav a {
  color: #475569;
  text-decoration: none;
}
.breadcrumb-nav a:hover {
  color: #dc2626;
}
.breadcrumb-nav .breadcrumb-separator {
  color: #94a3b8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  /* border: 1px solid transparent; */
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  gap: 0.5rem;
}
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}
.btn:disabled, .btn.disabled {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #ffffff;
  background-color: #dc2626;
  border-color: #dc2626;
}
.btn-primary:hover {
  color: #ffffff;
  background-color: #bd1f1f;
  border-color: #b21d1d;
}
.btn-primary:focus, .btn-primary.focus {
  color: #ffffff;
  background-color: #bd1f1f;
  border-color: #b21d1d;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #ffffff;
  background-color: #dc2626;
  border-color: #dc2626;
  opacity: 0.65;
}

.btn-secondary {
  color: #ffffff;
  background-color: #475569;
  border-color: #475569;
}
.btn-secondary:hover {
  color: #ffffff;
  background-color: #384352;
  border-color: #323c4b;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #ffffff;
  background-color: #384352;
  border-color: #323c4b;
  box-shadow: 0 0 0 0.2rem rgba(71, 85, 105, 0.25);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #ffffff;
  background-color: #475569;
  border-color: #475569;
  opacity: 0.65;
}

.btn-success {
  color: #ffffff;
  background-color: #16a34a;
  border-color: #16a34a;
}
.btn-success:hover {
  color: #ffffff;
  background-color: #11813b;
  border-color: #107636;
}
.btn-success:focus, .btn-success.focus {
  color: #ffffff;
  background-color: #11813b;
  border-color: #107636;
  box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.25);
}
.btn-success:disabled, .btn-success.disabled {
  color: #ffffff;
  background-color: #16a34a;
  border-color: #16a34a;
  opacity: 0.65;
}

.btn-warning {
  color: #ffffff;
  background-color: #d97706;
  border-color: #d97706;
}
.btn-warning:hover {
  color: #ffffff;
  background-color: #b46305;
  border-color: #a75c05;
}
.btn-warning:focus, .btn-warning.focus {
  color: #ffffff;
  background-color: #b46305;
  border-color: #a75c05;
  box-shadow: 0 0 0 0.2rem rgba(217, 119, 6, 0.25);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: #ffffff;
  background-color: #d97706;
  border-color: #d97706;
  opacity: 0.65;
}

.btn-danger {
  color: #ffffff;
  background-color: #dc2626;
  border-color: #dc2626;
}
.btn-danger:hover {
  color: #ffffff;
  background-color: #bd1f1f;
  border-color: #b21d1d;
}
.btn-danger:focus, .btn-danger.focus {
  color: #ffffff;
  background-color: #bd1f1f;
  border-color: #b21d1d;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: #ffffff;
  background-color: #dc2626;
  border-color: #dc2626;
  opacity: 0.65;
}

.btn-info {
  color: #ffffff;
  background-color: #0ea5e9;
  border-color: #0ea5e9;
}
.btn-info:hover {
  color: #ffffff;
  background-color: #0c8bc5;
  border-color: #0b83b9;
}
.btn-info:focus, .btn-info.focus {
  color: #ffffff;
  background-color: #0c8bc5;
  border-color: #0b83b9;
  box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.25);
}
.btn-info:disabled, .btn-info.disabled {
  color: #ffffff;
  background-color: #0ea5e9;
  border-color: #0ea5e9;
  opacity: 0.65;
}

.btn-outline-primary {
  color: #dc2626;
  border-color: #dc2626;
  background-color: transparent;
}
.btn-outline-primary:hover {
  color: #ffffff;
  background-color: #dc2626;
  border-color: #dc2626;
}

.btn-outline-secondary {
  color: #475569;
  border-color: #cbd5e1;
  background-color: transparent;
}
.btn-outline-secondary:hover {
  color: #ffffff;
  background-color: #475569;
  border-color: #475569;
}

.btn-link {
  color: #dc2626;
  text-decoration: none;
  background-color: transparent;
  border: none;
}
.btn-link:hover {
  color: #b21d1d;
  text-decoration: underline;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 0.25rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.75rem;
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon.btn-sm {
  width: 2rem;
  height: 2rem;
}
.btn-icon.btn-lg {
  width: 3rem;
  height: 3rem;
}

.btn-group {
  display: inline-flex;
  vertical-align: middle;
}
.btn-group .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group .btn:not(:first-child) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .btn:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group .btn:hover {
  z-index: 1;
}
.btn-group .btn:focus, .btn-group .btn.active {
  z-index: 2;
}

.btn-loading {
  position: relative;
  pointer-events: none;
}
.btn-loading::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.btn-loading .btn-text {
  visibility: hidden;
}

.btn {border:none !important; box-shadow: none !important; font-weight: bold;}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: inline-block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #334155;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #334155;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  line-height: 1;
  font-weight: 500;
}
.form-control:focus {
  color: #334155;
  background-color: #ffffff;
  border-color: #dc2626;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}
.form-control::-moz-placeholder {
  color: #94a3b8;
  opacity: 1;
}
.form-control::placeholder {
  color: #94a3b8;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #f1f5f9;
  opacity: 1;
}
.form-control.form-control-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 0.25rem;
  line-height: 1;
  font-weight: 500;
}
.form-control.form-control-lg {
  padding: .5rem 1rem;
  font-size: 1rem;
  border-radius: 9px;
  line-height: 1;
  font-weight: 500;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.75rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #334155;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1;
  font-weight: 500;
}
.form-select:focus {
  color: #334155;
  background-color: #ffffff;
  border-color: #dc2626;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}
.form-select::-moz-placeholder {
  color: #94a3b8;
  opacity: 1;
}
.form-select::placeholder {
  color: #94a3b8;
  opacity: 1;
}
.form-select:disabled, .form-select[readonly] {
  background-color: #f1f5f9;
  opacity: 1;
}
.form-select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%232563eb' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.75rem;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  margin-left: -1.75rem;
  vertical-align: top;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #cbd5e1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #dc2626;
  cursor: pointer;
}
.form-check .form-check-input[type=checkbox] {
  border-radius: 0.25rem;
}
.form-check .form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check .form-check-input:checked {
  background-color: #dc2626;
  border-color: #dc2626;
}
.form-check .form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check .form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check .form-check-input:focus {
  border-color: #dc2626;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}
.form-check .form-check-label {
  color: #334155;
  cursor: pointer;
}

.form-switch {
  padding-left: 2.5rem;
}
.form-switch .form-check-input {
  width: 2rem;
  margin-left: -2.5rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280,0,0,.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2rem;
  transition: background-position 0.15s ease-in-out;
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.is-valid {
  border-color: #16a34a;
}
.is-valid:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.25);
}

.is-invalid {
  border-color: #dc2626;
}
.is-invalid:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.valid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #16a34a;
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #dc2626;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group .form-control,
.input-group .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group .form-control:not(:first-child),
.input-group .form-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group .form-control:not(:last-child),
.input-group .form-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.75rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #475569;
  text-align: center;
  white-space: nowrap;
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
}
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu) .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.form-floating {
  position: relative;
}
.form-floating .form-control,
.form-floating .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
  padding: 1rem 0.75rem;
}
.form-floating .form-control:not(:-moz-placeholder-shown), .form-floating .form-select:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating .form-control:focus, .form-floating .form-control:not(:placeholder-shown),
.form-floating .form-select:focus,
.form-floating .form-select:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating .form-control:not(:-moz-placeholder-shown) ~ label, .form-floating .form-select:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating .form-control:focus ~ label, .form-floating .form-control:not(:placeholder-shown) ~ label,
.form-floating .form-select:focus ~ label,
.form-floating .form-select:not(:placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  caption-side: bottom;
  border-collapse: collapse;
}
.table th,
.table td {
  padding: 0.5rem 0.75rem;
  background-color: transparent;
  border-bottom-width: 0;
}
.table th {
  font-weight: 700;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: bottom;
}
.table td {
  /* border-bottom: 1px solid #f1f5f9; */
  vertical-align: middle;
}
.table caption {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  color: #475569;
  text-align: left;
}

.table-striped tbody tr:nth-of-type(odd) {
  --bs-table-accent-bg: #e2e8f0;
}

.table-striped th {border:none;}

.table-hover tbody tr:hover {
  --bs-table-accent-bg: #f1f5f9;
  transition: all 0.2s ease;
}

.table-bordered {
  border: 1px solid #e2e8f0;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #e2e8f0;
}

.table-borderless th,
.table-borderless td {
  border: none;
}

.table-sm th,
.table-sm td {
  padding: 0.5rem;
}

.table-lg th,
.table-lg td {
  padding: 1.25rem 1rem;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive .table {
  margin-bottom: 0;
}

@media (max-width: -0.02) {
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.table-primary {
  --bs-table-bg: #fcecec;
  --bs-table-striped-bg: #f8d6d6;
  --bs-table-hover-bg: #f5c0c0;
  border-color: #f5c0c0;
}

.table-secondary {
  --bs-table-bg: #c1c9d5;
  --bs-table-striped-bg: #b1bccb;
  --bs-table-hover-bg: #a2afc0;
  border-color: #a2afc0;
}

.table-success {
  --bs-table-bg: #abf4c6;
  --bs-table-striped-bg: #94f1b6;
  --bs-table-hover-bg: #7eeea7;
  border-color: #7eeea7;
}

.table-warning {
  --bs-table-bg: #fde4c7;
  --bs-table-striped-bg: #fdd8ae;
  --bs-table-hover-bg: #fccc95;
  border-color: #fccc95;
}

.table-danger {
  --bs-table-bg: #fcecec;
  --bs-table-striped-bg: #f8d6d6;
  --bs-table-hover-bg: #f5c0c0;
  border-color: #f5c0c0;
}

.job-table th {
  background-color: #ffffff;
  border-bottom: 2px solid #e2e8f0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #475569;
  font-weight: 700;
}
.job-table td {
  font-size: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
}
.job-table .job-number {
  font-weight: 700;
  color: #dc2626;
}
.job-table .client-name {
  font-weight: 600;
  color: #0f172a;
}
.job-table .job-title {
  color: #334155;
}
.job-table .job-title a {
  color: inherit;
  text-decoration: none;
}
.job-table .job-title a:hover {
  color: #dc2626;
  text-decoration: underline;
}

.time-table .time-user {
  font-weight: 600;
  color: #0f172a;
}
.time-table .time-category {
  color: #475569;
  font-size: 0.75rem;
}
.time-table .time-hours {
  font-weight: 700;
  text-align: right;
  color: #0f172a;
}
.time-table .time-total {
  background-color: #f8fafc;
  font-weight: 800;
}
.time-table .time-total td {
  border-top: 2px solid #e2e8f0;
  border-bottom: none;
}

.sortable-header {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  padding-right: 2rem;
}
.sortable-header:hover {
  background-color: #e6edf4;
}
.sortable-header::after {
  content: "↕";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.875rem;
}
.sortable-header.sort-asc::after {
  content: "↑";
  color: #dc2626;
}
.sortable-header.sort-desc::after {
  content: "↓";
  color: #dc2626;
}

.table-dark {
  --bs-table-bg: #eceef4;
  --bs-table-striped-bg: #eceef4;
}
.table-dark th {
  background-color: #eceef4 !important;
  color: #334155;
  border-bottom-color: #ccd1e1;
}










.card {
  background-color: #ffffff;
  border: 0 solid transparent;
  border-radius: 0.5rem;
  padding: .5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  background-color: #eceef4;
  margin-right: 1rem;
}

.card-header {
  margin-bottom: 1rem;
  background-color: transparent;
  font-weight: 700;
  padding:0 0 .3rem 0;
}


/* .card-header:first-child {
  border-radius: 0.75rem 0.75rem 0 0;
} */
.card-header h1, .card-header h2, .card-header h3, .card-header h4, .card-header h5, .card-header h6 {
  margin-bottom: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem;
}
.card-body h1:first-child, .card-body h2:first-child, .card-body h3:first-child, .card-body h4:first-child, .card-body h5:first-child, .card-body h6:first-child {
  margin-top: 0;
}
.card-body p:last-child {
  margin-bottom: 0;
}

.card-footer {
  padding: 1rem 1.5rem;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-radius: 0 0 0.75rem 0.75rem;
}
.card-footer:last-child {
  border-radius: 0 0 0.75rem 0.75rem;
}

.card-title {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #475569;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link {
  color: #dc2626;
  text-decoration: none;
}
.card-link:hover {
  color: #b21d1d;
  text-decoration: underline;
}
.card-link + .card-link {
  margin-left: 1rem;
}

.card-img-top {
  border-radius: 0.75rem 0.75rem 0 0;
}

.card-img-bottom {
  border-radius: 0 0 0.75rem 0.75rem;
}

.card-outline-primary {
  border: 2px solid #dc2626;
  box-shadow: none;
}

.card-outline-secondary {
  border: 2px solid #cbd5e1;
  box-shadow: none;
}

.card-outline-success {
  border: 2px solid #16a34a;
  box-shadow: none;
}

.card-outline-warning {
  border: 2px solid #d97706;
  box-shadow: none;
}

.card-outline-danger {
  border: 2px solid #dc2626;
  box-shadow: none;
}

.card-hover {
  transition: all 0.2s ease;
  cursor: pointer;
}
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-group {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}
.card-group .card {
  flex: 1 0 0%;
}
@media (max-width: 767.98px) {
  .card-group .card {
    flex: 1 0 100%;
  }
}

.stat-card {
  text-align: center;
}
.stat-card .stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #dc2626;
  margin-bottom: 0.5rem;
}
.stat-card .stat-label {
  font-size: 0.75rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-card .stat-icon {
  font-size: 2rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.card-loading {
  position: relative;
  pointer-events: none;
}
.card-loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  z-index: 10;
}

.card-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  margin-left: 2rem;
  margin-right: 2rem;
}
.card-row .card {
  flex: 1;
  min-width: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 767.98px) {
  .card-row {
    flex-direction: column;
  }
  .card-row .card {
    flex: none;
  }
}

/* Specific flex ratios */
.card-row .card.flex-2 {
  flex: 2; /* Takes 2/3 of available space */
}

.card-row .card.flex-1 {
  flex: 1; /* Takes 1/3 of available space */
}

.save-button-card {
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin-bottom 0.3s ease-out;
  overflow: hidden;
}
.save-button-card.save-button-hidden {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
}
.save-button-card:not(.save-button-hidden) {
  max-height: 200px;
  opacity: 1;
  margin-bottom: 1rem;
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 50rem;
}

.badge-primary {
  background-color: #dc2626;
}

.badge-secondary {
  background-color: #475569;
}

.badge-success {
  background-color: #16a34a;
}

.badge-warning {
  background-color: #d97706;
}

.badge-danger {
  background-color: #dc2626;
}

.badge-info {
  background-color: #0ea5e9;
}

.badge-light {
  background-color: #f1f5f9;
  color: #334155;
}

.badge-dark {
  background-color: #1e293b;
}

.status-badge {
  background-color: #f1f5f9;
  color: #475569;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
}
.status-badge.status-new {
  background-color: #dbeafe;
  color: #1e40af;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-badge.status-scheduled {
  background-color: #fef3c7;
  color: #92400e;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-badge.status-production {
  background-color: #dcfce7;
  color: #166534;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-badge.status-proof {
  background-color: #fde68a;
  color: #92400e;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-badge.status-hold {
  background-color: #fee2e2;
  color: #991b1b;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-badge.status-printing {
  background-color: #e0e7ff;
  color: #3730a3;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-badge.status-invoicing {
  background-color: #f3e8ff;
  color: #6b21a8;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.priority-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.priority-indicator.priority-low {
  background-color: #10b981;
}
.priority-indicator.priority-med {
  background-color: #f59e0b;
}
.priority-indicator.priority-high {
  background-color: #ef4444;
}

.priority-badge {
  background-color: #f1f5f9;
  color: #475569;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
}
.priority-badge.priority-low {
  background-color: #9ef7d9;
  color: #085b40;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.priority-badge.priority-med {
  background-color: #fdeccf;
  color: #945f06;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.priority-badge.priority-high {
  background-color: white;
  color: #bd1010;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.client-badge {
  background-color: #f1f5f9;
  color: #475569;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
}
.client-badge.client-ongoing {
  background-color: #c7ebfc;
  color: #086189;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.client-badge.client-project {
  background-color: #f8d6d6;
  color: #861616;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-pill {
  padding-right: 0.875rem;
  padding-left: 0.875rem;
  border-radius: 50rem;
}

.badge-dismissible {
  position: relative;
  padding-right: 2rem;
}
.badge-dismissible .btn-close {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
  background: none;
  border: none;
  color: currentColor;
  opacity: 0.7;
}
.badge-dismissible .btn-close:hover {
  opacity: 1;
}

.notification-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  border-radius: 50%;
  background-color: #dc2626;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.counter-badge {
  background-color: #475569;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 800;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.25rem;
  border-radius: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  border-bottom: 2px solid #e2e8f0;
  gap: 0.5rem;
}
.nav-tabs .nav-item {
  margin-bottom: -2px;
}
.nav-tabs .nav-link {
  display: block;
  padding: 0.6rem 1.5rem 0.5rem 1.5rem;
  color: #475569;
  text-decoration: none;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
  border-radius: 0.5rem 0.5rem 0 0;
}
.nav-tabs .nav-link:hover {
  color: #dc2626;
  background-color: #f8fafc;
  border-bottom-color: #cbd5e1;
}
.nav-tabs .nav-link.active {
  color: #dc2626;
  background-color: #ffffff;
  border-bottom-color: #dc2626;
}
.nav-tabs .nav-link:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}
.nav-tabs .nav-link.disabled {
  color: #94a3b8;
  background-color: transparent;
  border-color: transparent;
  cursor: not-allowed;
}

.nav-pills .nav-link {
  background: none;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  color: #475569;
  font-weight: 600;
  transition: all 0.2s ease;
}
.nav-pills .nav-link:hover {
  color: #dc2626;
  background-color: #f1f5f9;
}
.nav-pills .nav-link.active {
  color: #ffffff;
  background-color: #dc2626;
}

.nav-underline .nav-link {
  padding: 1rem 0;
  margin-right: 2rem;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  color: #475569;
  font-weight: 600;
  transition: all 0.2s ease;
}
.nav-underline .nav-link:hover {
  color: #dc2626;
  border-bottom-color: #cbd5e1;
}
.nav-underline .nav-link.active {
  color: #dc2626;
  border-bottom-color: #dc2626;
}

/* Let Bootstrap 5 handle tab visibility natively */

.nav-tabs-vertical {
  flex-direction: column;
  border-right: 2px solid #e2e8f0;
  border-bottom: none;
  width: 200px;
}
.nav-tabs-vertical .nav-item {
  margin-bottom: 0;
  margin-right: -2px;
}
.nav-tabs-vertical .nav-link {
  border: none;
  border-right: 2px solid transparent;
  border-radius: 0.5rem 0 0 0.5rem;
  text-align: left;
}
.nav-tabs-vertical .nav-link:hover {
  border-right-color: #cbd5e1;
  border-bottom-color: transparent;
}
.nav-tabs-vertical .nav-link.active {
  border-right-color: #dc2626;
  border-bottom-color: transparent;
}

.nav-tabs-icon .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.nav-tabs-icon .nav-link i {
  font-size: 1.125rem;
}

.nav-link-badge {
  position: relative;
}
.nav-link-badge .badge {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  font-size: 0.625rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .nav-tabs {
    flex-direction: column;
    border-bottom: none;
    border-right: 2px solid #e2e8f0;
  }
  .nav-tabs .nav-item {
    margin-bottom: 0;
    margin-right: -2px;
  }
  .nav-tabs .nav-link {
    border-bottom: none;
    border-right: 2px solid transparent;
    border-radius: 0.5rem 0 0 0.5rem;
  }
  .nav-tabs .nav-link:hover {
    border-right-color: #cbd5e1;
  }
  .nav-tabs .nav-link.active {
    border-right-color: #dc2626;
  }
  .nav-tabs-responsive .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }
}
.card-tabs .card-header {
  padding: 0;
  background: none;
  border-bottom: none;
}
.card-tabs .card-header .nav-tabs {
  margin-bottom: 0;
  border-bottom: 2px solid #e2e8f0;
}
.card-tabs .card-header .nav-tabs .nav-link {
  border-radius: 0;
  margin-bottom: 0;
}
.card-tabs .card-header .nav-tabs .nav-link:first-child {
  border-radius: 0.75rem 0 0 0;
}
.card-tabs .card-header .nav-tabs .nav-link:last-child {
  border-radius: 0 0.75rem 0 0;
}
.card-tabs .card-body {
  padding-top: 2rem;
}

.timesheet-chart {
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 120px;
  padding: 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.timesheet-chart::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f1f5f9' fill-opacity='0.5'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.3;
  pointer-events: none;
}

.chart-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: end;
  gap: 0.5rem;
  z-index: 1;
}

.chart-bar {
  position: relative;
  background-color: #e2e8f0;
  border-radius: 4px 4px 0 0;
  min-height: 20px;
  max-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  max-width: 60px;
  background-color: #e2e8f0;
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: all 0.3s ease;
}
.chart-bar:hover {
  background-color: #c0cddf;
  transform: scaleY(1.05);
}

.chart-bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #dc2626 0%, #e35252 100%);
  border-radius: 4px 4px 0 0;
  transition: all 0.3s ease;
  min-height: 4px;
}
.chart-bar-fill.has-data {
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}

.chart-bar-label {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.625rem;
  color: #475569;
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
}

.chart-bar-value {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.625rem;
  color: #334155;
  font-weight: 700;
  background-color: #ffffff;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.chart-bar:hover .chart-bar-value {
  opacity: 1;
}

.chart-divider {
  width: 2px;
  height: 80%;
  background: repeating-linear-gradient(to bottom, #cbd5e1 0, #cbd5e1 4px, transparent 4px, transparent 8px);
  margin: 0 0.25rem;
  align-self: center;
}

.chart-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #475569;
}
.legend-item .legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}
.legend-item.legend-billable .legend-color {
  background-color: #dc2626;
}
.legend-item.legend-non-billable .legend-color {
  background-color: #94a3b8;
}

.chart-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 120px;
  color: #64748b;
  font-size: 0.75rem;
  gap: 0.5rem;
}
.chart-empty i {
  font-size: 2rem;
  color: #94a3b8;
}

.progress-chart .progress {
  height: 20px;
  background-color: #e2e8f0;
  border-radius: 50rem;
  overflow: hidden;
  position: relative;
}
.progress-chart .progress-bar {
  background: linear-gradient(90deg, #dc2626 0%, #e35252 100%);
  transition: width 0.6s ease;
  border-radius: 50rem;
  position: relative;
}
.progress-chart .progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
  animation: progress-bar-stripes 1s linear infinite;
}
.progress-chart .progress-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

@keyframes progress-bar-stripes {
  0% {
    background-position: 1rem 0;
  }
  100% {
    background-position: 0 0;
  }
}
.donut-chart {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.donut-chart .donut-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#dc2626 0deg 216deg, #e2e8f0 216deg 360deg);
  position: relative;
}
.donut-chart .donut-ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background-color: #ffffff;
  border-radius: 50%;
}
.donut-chart .donut-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}
.donut-chart .donut-text .donut-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  display: block;
}
.donut-chart .donut-text .donut-label {
  font-size: 0.75rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal.show {
  display: block;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.5);
}
.modal-backdrop.show {
  opacity: 1;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 1rem;
  pointer-events: none;
  transition: transform 0.3s ease-out;
}
.modal.show .modal-dialog {
  transform: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #eceef4;
  background-clip: padding-box;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  outline: 0;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0.75rem 0.75rem 0 0;
}
.modal-header .modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 700;
  color: #0f172a;
}
.modal-header .btn-close {
  padding: 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
  background: none;
  border: none;
  border-radius: 0.5rem;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.modal-header .btn-close:hover {
  opacity: 0.75;
}
.modal-header .btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
  opacity: 1;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1.5rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e2e8f0;
  border-radius: 0 0 0.75rem 0.75rem;
  gap: 0.5rem;
}
.modal-footer .btn + .btn {
  margin-left: 0.5rem;
}

.modal-sm {
  max-width: 300px;
}

.modal-lg {
  max-width: 800px;
}

.modal-xl {
  max-width: 1140px;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 2rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 2rem);
  height: calc(100vh - 2rem);
  content: "";
}

.modal-dialog-scrollable {
  height: calc(100% - 2rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.fade .modal-backdrop {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.modal.show .modal-backdrop {
  opacity: 1;
}

.job-modal .modal-header {
  background-color: #f8fafc;
}
.job-modal .modal-header .modal-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}
.job-modal .modal-header .modal-title i {
  color: #dc2626;
}
.job-modal .modal-body {
  padding: 2rem;
}

.confirmation-modal .modal-content {
  text-align: center;
}
.confirmation-modal .modal-body {
  padding: 2rem;
}
.confirmation-modal .modal-body i {
  font-size: 3rem;
  color: #d97706;
  margin-bottom: 1rem;
}
.confirmation-modal .modal-body h5 {
  margin-bottom: 1rem;
  color: #0f172a;
}
.confirmation-modal .modal-body p {
  color: #475569;
  margin-bottom: 0;
}
.confirmation-modal .modal-footer {
  justify-content: center;
  gap: 1rem;
}

.pagination {
  margin: 2rem 0;
}
.pagination .page-link {
  color: #dc2626;
  border-color: #cbd5e1;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  text-decoration: none;
}
.pagination .page-link:hover {
  color: #b21d1d;
  background-color: #f1f5f9;
  border-color: #94a3b8;
}
.pagination .page-link:focus {
  color: #dc2626;
  background-color: #f1f5f9;
  border-color: #dc2626;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}
.pagination .page-item.active .page-link {
  background-color: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
}
.pagination .page-item.active .page-link:hover {
  background-color: #b21d1d;
  border-color: #b21d1d;
}
.pagination .page-item.disabled .page-link {
  color: #94a3b8;
  pointer-events: none;
  background-color: #ffffff;
  border-color: #cbd5e1;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.mx-3 {
  margin-right: 0.75rem !important;
  margin-left: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-5 {
  margin: 1.25rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mr-5 {
  margin-right: 1.25rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.ml-5 {
  margin-left: 1.25rem !important;
}

.mx-5 {
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important;
}

.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.m-6 {
  margin: 1.5rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mr-6 {
  margin-right: 1.5rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.ml-6 {
  margin-left: 1.5rem !important;
}

.mx-6 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-7 {
  margin: 1.75rem !important;
}

.mt-7 {
  margin-top: 1.75rem !important;
}

.mr-7 {
  margin-right: 1.75rem !important;
}

.mb-7 {
  margin-bottom: 1.75rem !important;
}

.ml-7 {
  margin-left: 1.75rem !important;
}

.mx-7 {
  margin-right: 1.75rem !important;
  margin-left: 1.75rem !important;
}

.my-7 {
  margin-top: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}

.m-8 {
  margin: 2rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mr-8 {
  margin-right: 2rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.ml-8 {
  margin-left: 2rem !important;
}

.mx-8 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.m-9 {
  margin: 2.25rem !important;
}

.mt-9 {
  margin-top: 2.25rem !important;
}

.mr-9 {
  margin-right: 2.25rem !important;
}

.mb-9 {
  margin-bottom: 2.25rem !important;
}

.ml-9 {
  margin-left: 2.25rem !important;
}

.mx-9 {
  margin-right: 2.25rem !important;
  margin-left: 2.25rem !important;
}

.my-9 {
  margin-top: 2.25rem !important;
  margin-bottom: 2.25rem !important;
}

.m-10 {
  margin: 2.5rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mr-10 {
  margin-right: 2.5rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.ml-10 {
  margin-left: 2.5rem !important;
}

.mx-10 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.px-3 {
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-5 {
  padding: 1.25rem !important;
}

.pt-5 {
  padding-top: 1.25rem !important;
}

.pr-5 {
  padding-right: 1.25rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.pl-5 {
  padding-left: 1.25rem !important;
}

.px-5 {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}

.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.p-6 {
  padding: 1.5rem !important;
}

.pt-6 {
  padding-top: 1.5rem !important;
}

.pr-6 {
  padding-right: 1.5rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.pl-6 {
  padding-left: 1.5rem !important;
}

.px-6 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-7 {
  padding: 1.75rem !important;
}

.pt-7 {
  padding-top: 1.75rem !important;
}

.pr-7 {
  padding-right: 1.75rem !important;
}

.pb-7 {
  padding-bottom: 1.75rem !important;
}

.pl-7 {
  padding-left: 1.75rem !important;
}

.px-7 {
  padding-right: 1.75rem !important;
  padding-left: 1.75rem !important;
}

.py-7 {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.p-8 {
  padding: 2rem !important;
}

.pt-8 {
  padding-top: 2rem !important;
}

.pr-8 {
  padding-right: 2rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.pl-8 {
  padding-left: 2rem !important;
}

.px-8 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.p-9 {
  padding: 2.25rem !important;
}

.pt-9 {
  padding-top: 2.25rem !important;
}

.pr-9 {
  padding-right: 2.25rem !important;
}

.pb-9 {
  padding-bottom: 2.25rem !important;
}

.pl-9 {
  padding-left: 2.25rem !important;
}

.px-9 {
  padding-right: 2.25rem !important;
  padding-left: 2.25rem !important;
}

.py-9 {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}

.p-10 {
  padding: 2.5rem !important;
}

.pt-10 {
  padding-top: 2.5rem !important;
}

.pr-10 {
  padding-right: 2.5rem !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

.pl-10 {
  padding-left: 2.5rem !important;
}

.px-10 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

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

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 800 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 1.75 !important;
}

.text-primary {
  color: #dc2626 !important;
}

.text-secondary {
  color: #475569 !important;
}

.text-success {
  color: #16a34a !important;
}

.text-warning {
  color: #d97706 !important;
}

.text-danger {
  color: #dc2626 !important;
}

.text-info {
  color: #0ea5e9 !important;
}

.text-light {
  color: #f1f5f9 !important;
}

.text-dark {
  color: #0f172a !important;
}

.text-muted {
  color: #64748b !important;
}

.text-white {
  color: #ffffff !important;
}

.bg-primary {
  background-color: #dc2626 !important;
}

.bg-secondary {
  background-color: #475569 !important;
}

.bg-success {
  background-color: #16a34a !important;
}

.bg-warning {
  background-color: #d97706 !important;
}

.bg-danger {
  background-color: #dc2626 !important;
}

.bg-info {
  background-color: #0ea5e9 !important;
}

.bg-light {
  background-color: #f1f5f9 !important;
}

.bg-dark {
  background-color: #0f172a !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #e2e8f0 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #e2e8f0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right {
  border-right: 1px solid #e2e8f0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #e2e8f0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left {
  border-left: 1px solid #e2e8f0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #dc2626 !important;
}

.border-secondary {
  border-color: #cbd5e1 !important;
}

.border-success {
  border-color: #16a34a !important;
}

.border-warning {
  border-color: #d97706 !important;
}

.border-danger {
  border-color: #dc2626 !important;
}

.border-info {
  border-color: #0ea5e9 !important;
}

.border-light {
  border-color: #e2e8f0 !important;
}

.border-dark {
  border-color: #334155 !important;
}

.border-white {
  border-color: #ffffff !important;
}

.rounded {
  border-radius: 0.5rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.25rem !important;
}

.rounded-2 {
  border-radius: 0.5rem !important;
}

.rounded-3 {
  border-radius: 0.75rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.shadow-none {
  box-shadow: none !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sr-only-focusable:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

@media (min-width: 1200px) {
.team-list {
  column-count: 2;
  gap: 0.5rem;
}
}
.ql-toolbar {
  border-top: 1px solid #cbd5e1 !important;
  border-left: 1px solid #cbd5e1 !important;
  border-right: 1px solid #cbd5e1 !important;
  border-bottom: none !important;
  background: #f8fafc;
  border-radius: 0.5rem 0.5rem 0 0;
}

.ql-container {
  border-bottom: 1px solid #cbd5e1 !important;
  border-left: 1px solid #cbd5e1 !important;
  border-right: 1px solid #cbd5e1 !important;
  border-top: none !important;
  border-radius: 0 0 0.5rem 0.5rem;
  font-family: "Gothic A1", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
}

.ql-editor {
  padding: 1rem;
  min-height: 120px;
}
.ql-editor.ql-blank::before {
  color: #64748b;
  font-style: normal;
}

.comment-item {
  background-color: #f8fafc;
}
.comment-item .comment-author {
  color: #dc2626;
}
.comment-item .comment-content {
  line-height: 1.6;
}
.comment-item .comment-content p {
  margin-bottom: 0.5rem;
}
.comment-item .comment-content p:last-child {
  margin-bottom: 0;
}
.comment-item .comment-content ul, .comment-item .comment-content ol {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}
.comment-item .comment-content a {
  color: #dc2626;
  text-decoration: underline;
}
.comment-item .comment-content a:hover {
  color: #b21d1d;
}

/* ========================================== */
/* CUSTOM TABLE STYLES */
/* ========================================== */

/* Compact select field for table rows */
.form-select-compact {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
}

/* Table header border matching card headers */
.table thead {
  border-bottom: 2px solid #e2e8f0;
}

/* Remove borders on all form fields and ensure consistent height */
.form-control,
.form-select {
  border: none;
  height: 42px;
}

/* Allow textareas to have variable height */
textarea.form-control {
  height: auto;
}

/* ========================================== */
/* UTILITY CLASSES */
/* ========================================== */

/* Hidden element for JavaScript toggle */
.js-hidden {
  display: none;
}/*# sourceMappingURL=app.css.map */


.col-flow-2 {column-count:1}
@media (min-width: 992px) {
  .col-flow-2 {column-count:2; column-gap: 2.5rem;}
}
/* ========================================== */
/* FLASH MESSAGES */
/* ========================================== */

.flash {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  min-width: 300px;
  max-width: 600px;
  padding: 1rem 1.5rem;
  background-color: #198754;
  color: white;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  animation: slideDown 0.3s ease-out;
}

.flash p {
  margin: 0;
  font-weight: 500;
}

.flash.flash-error {
  background-color: #dc3545;
}

.flash.flash-warning {
  background-color: #ffc107;
  color: #333;
}

.flash.flash-info {
  background-color: #0dcaf0;
  color: #333;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(-100%);
  }
}
