@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/Plus_Jakarta_Sans/PlusJakartaSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Figtree';
    src: url('../fonts/Figtree/Figtree-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
.welcome-message {
    height: calc(100vh - 250px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cod__table {
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #EAF0F7;
  margin-top: 24px;
}
.card__title{
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #040404;
    letter-spacing: 0%;
}

.entries-select {
  width: 80px !important;
}

::v-deep .custom-thead th,
::v-deep .b-table > thead > tr > th {
  background-color: #f8f9fa !important;
}

.arrow-button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #007bff;
  cursor: pointer;
  margin: 0 10px;
}

.overlay-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-select-none {
  user-select: none;
}
.summary-card {
  border: 1px solid #dee2e6;
}
.editable-cell {
  background-color: #fff8e1;
  padding: 0 !important;
}

.editable-cell input {
  width: 100%;
  border: none;
  background: transparent;
  height: 100%;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

 i.fa-edit, .btn-sm {
  pointer-events: auto;
}
.date-picker {
  display: inline-flex;
  align-items: center;
}

.date-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #C4C4CC;
  border-radius: 10px;
  background: white;
  color: #40404D;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s ease;
  font-weight: 500;
  font-family: 'Satoshi', sans-serif;
  line-height: 125%;
  letter-spacing: 0%;
  height: 40px;
  width: 201px;
  justify-content: center;
}

.date-btn:hover {
  background: #f5f5f5;
}

.icon {
  width: 18px;
  height: 18px;
}

.hidden-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.report-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}


.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal_content {
    position: relative;
    width: 1200px;
    height: 90vh;
    padding: 32px;
    background-color: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.modal-header {
    border-bottom: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px !important;
}

.title {
    font-family: "Satoshi", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0%;
    color: #040404;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0px 12px 0px 0px !important;
    margin-top: 24px;
}

.form__input {
    border: 1px solid #d0d5dd;
    width: 100%;
    border-radius: 14px;
    margin-top: 6px;
    padding: 9px 14px;
    font-weight: 500;
    font-size: 16px;
    color: #565666;
    line-height: 26px;
    font-family: "Satoshi", sans-serif;
}

.form__label {
    font-family: "Satoshi", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #565666;
}

.modal__footer {
    display: flex;
    margin-top: 24px;
}

::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 16px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8d8e90;
}