@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: 'Plus Jakarta Sans SemiBold';
    src: url('../fonts/Plus_Jakarta_Sans/PlusJakartaSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    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;
}
.custom__dropdown {
  position: absolute;
  right: 0;
  margin-top: 3px;
  width: 10rem;      
  background-color: #ffffff; 
  border: 1px solid #e5e7eb; 
  border-radius: 6px;   
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1),
              0 1px 2px rgba(0, 0, 0, 0.06); 
  z-index: 50;
}
.custom-item {
  padding: 0.5rem 1rem;        
  cursor: pointer;             
  display: flex;               
  align-items: center;         
  gap: 0.5rem;                  
  transition: background-color 0.2s ease;
}

.custom-item:hover {
  background-color: #f3f4f6; 
}


.staff__table {
    padding: 24px;
    background-color: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #EAF0F7;
    margin-top: 24px;
}


.staff__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;

}
.welcome-message {
  height: calc(100vh - 250px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.set_style {
    border: 2px solid #00008b;
    border-radius: 5px;
}

.permission-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
}

.form-group {
    display: contents;
}

.form-group label {
    grid-column: 1 / -1;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.b-form-checkbox {
    margin: 0.25rem 0;
}

.vs__selected-options {
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #f1f1f1;
}

.vs__selected-options::-webkit-scrollbar {
    width: 4px;
    border-radius: 5px;
}
.selected-chip {
    margin-right: 8px;
}

.dropdown-header {
    font-weight: bold;
    padding: 8px;
}

.customSelected {
    background-color: #ebecfb !important;
    cursor: pointer !important;

}

.modal-dialog-scrollable .modal-content {
    min-height: calc(100vh - 3.5rem) !important;
    max-height: inherit !important;
}

.slide-right-enter-active,
.slide-right-leave-active {
  transition: all 0.3s ease;
}

.slide-right-enter-from,
.slide-right-leave-to {
  opacity: 0;
  transform: translateX(100%);
}

.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
}

.filter-panel {
  border-radius: 16px 0 0 16px;
  background: white;
  width: 500px;
  height: 100%;
  overflow-y: auto;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

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

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

.filter-body {
  padding: 20px;
}

.filter-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-end;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  overflow-y: auto;
  padding: 12px;
}

.check__permission{
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -2%;
    color: #111827;
}
.permission__form{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 85vh;
}
.add-staff-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;
    transition: all 0.3s ease;
    width: 1000px;
    padding: 32px;
    height: 55vh;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}
.modal-expanded {
  height: 95vh;
}
.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;
}
.select__fields {
    margin-top: 6px;
    border: 1px solid #D0D5DD;
    border-radius: 14px;
    padding: 12px 14px;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    color: #565666;
    line-height: 26px;
    font-family: 'Satoshi', sans-serif;
}
.input-group {
    display: flex;
    align-items: center;
}
.input-group-append {
    margin-left: -1px;
}
.input-group-text {
    border: 1px solid #D0D5DD;
    border-radius: 0 14px 14px 0;
    padding: 9px 14px;
    background-color: #fff;
}
.modal-footer {
    padding: 15px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-top: 0px !important;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #fff;
}
::-webkit-scrollbar-thumb {
    background: #E5E7EB;
    border-radius: 16px;
}
::-webkit-scrollbar-thumb:hover {
    background: #8d8e90;
}

.password-input {
    position: relative;
    display: inline-flex;
    align-items: center;
    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;
}

.password-input span {
    margin-left: 5px;
    color: #6b7280;
    pointer-events: none;
}

.password-input input {
    border: none;
    outline: none;
    width: 100%;
}
