body{
  background: #F5F8FA;
/*  font-family: "Trebuchet MS", sans-serif; */
  font-family: "Inter", sans-serif;
  letter-spacing: -0.015em;
  line-height: 1.4;
  font-weight: 500;
}

.full-width {
  width: 100%;
}

.full-height{
  min-height: calc(100vh - 137px);
}

.full-height-wo-header{
  height: calc(100vh - 57px);  
}


.card-mh-400{
  max-height: 400px;
  overflow-y: auto;
}

.card-mh-600 {
  max-height: 600px;
  overflow-y: auto;
}


.task_open{
  background-color: #e0e3e4;
  color: #838383;
  display: flex;
  align-items: center;
  justify-content: center;  
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s ease;
  padding: 2px 8px;
  overflow: hidden;
}

.task_open:hover{
  background-color: #22af47;
  color: #fff;
}

.task_closed{
  background-color: #22af47;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s ease;
  padding: 2px 8px;
  overflow: hidden;
}

.margin-a{
  margin: auto;
}

.pos-sticky{
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
}



.card-mh-200{
  max-height: 200px;
  overflow-y: auto;
}

.card {
  overflow: auto;

  scrollbar-gutter: stable;
  scrollbar-width: thin;
}

.card::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.card::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.card:not(:hover)::-webkit-scrollbar-thumb {
  background-color: transparent;
}



/* Employee Details */


.employee_info_header_avatar{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e0e3e4;
  color: #838383;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
}


.employee_info_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  font-size: 12px;
}

.employee_info_column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.employee_info_row {
  display: grid;
  grid-template-columns: minmax(120px, 30%) minmax(0, 70%);
  gap: 10px;
}

.employee_info_label {
  font-weight: bold;
}


@media (max-width: 768px) {
  .employee_info_container {
    grid-template-columns: 1fr;
  }

  .employee_info_column:first-child {
    padding-right: 0;
  }

  .employee_info_column:last-child {
    padding-left: 0;
  }
}



/* Calendar Styles */

.custom-more-popup {
  padding: 8px;
}

.more-events-list {
  max-height: 400px;
  overflow-y: auto;
}

.more-event-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 8px;
}

.more-event-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.more-event-item .list-event-title {
  padding: 8px;
}

.more-event-item .list-event-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
}

.more-event-item .event-details-wrapper {
  padding: 0 8px 8px 24px;
}

.more-event-item .list-event-description {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 8px;
}

.more-event-item .list-event-actions {
  margin-top: 8px;
}

.toggle-icon {
  transition: transform 0.2s ease;
}

.custom-list-table {
  border: none !important;
}

.custom-list-heading td {
  background-color: #f8f9fa !important;
  padding: 12px 16px !important;
  font-weight: 600;
}

.custom-list-item {
  transition: background-color 0.2s ease;
}

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

.custom-list-event {
  display: flex;
  align-items: flex-start;
  padding: 12px 16px;
}

.list-event-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 12px;
  margin-top: 4px;
}

.list-event-content {
  flex: 1;
}

.list-event-title {
  font-weight: 500;
  padding: 8px 0;
}

.toggle-icon {
  transition: transform 0.2s ease;
}

.event-details-wrapper {
  padding: 8px 0;
}

.event-details-wrapper.hidden {
  display: none;
}

.list-event-description {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 8px;
}

.list-event-actions {
  margin-top: 12px;
}

.fc-list-empty-wrap2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fc-list-empty-wrap1 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fc-list-empty {
  color: #666;
  font-size: 1.1em;
}



.calendar-weekend-day{
  background-color: #fafafa;
}

.calendar-today-day{
  border-top: 3px solid #9E239E !important;
}

.fc-event{
  cursor: pointer;
}

.calendar-popover-title{
  font-size: 14px;
  font-weight: 600;
  color: #000;
  min-width: 250px;
  padding: 10px;
  background-color: #e3e3e3;
}

.calendar-popover-content{
  font-size: 12px;
  color: #9e9e9e;
  padding: 10px;
  background-color: #f5f5f5;
}

/* Pipeline Column Styles */

.deal-activity-item{
  padding: 5px 10px;
}

.deal-activity-item:hover {
  background-color: #fafafa;
}

.pipeline-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.pipeline_column {
  width: 300px;
  background: #f5f5f5;
  border-radius: 8px;
}

.pipeline_column .header {
  padding: 15px;
  height: 80px;
}

.pipeline_column .body {
  padding: 10px;
  min-height: 500px;
}

.pipeline_column_list {
  list-style: none;
  padding: 0;
  margin: 0;
  min-height: 500px;
}

.pipeline_column_list .item {
  margin-bottom: 10px;
}

.pipeline_card {
  background: white;
  width: 272px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-height: 100px;
}

.pipeline_card_content {
  padding: 15px;
}

/* Drag and Drop States */
.item.dragging {
  opacity: 0.5;
  position: absolute;
  pointer-events: none;
  z-index: 999;
}

.pipeline_column_list.drag-over {
}

.placeholder {
  background: #f2fbff;
  border: 1px dashed #b6bcbf;
  margin: 5px 0;
  min-height: 30px;
  border-radius: 6px;
  height: 100px;
}


.pipeline_column .header_subtext{
  font-size: 12px;
  color: #9e9e9e;
}


.pipeline_card_content_title{
  font-size: 14px;
  font-weight: 600;
  color: #000;
  cursor: pointer !important;
}

.pipeline_card_content_lead{
  font-size: 12px;
  color: #9e9e9e;
}

.pipeline_card_content_value{
  margin-top: 5px;
  font-size: 12px;
  color: #000;

}

.pipeline-bottom-overlay {
  position: fixed;
  bottom: 0;
  left: 80px;
  right: 0;
  background-color: rgba(51, 51, 51, 0.9);
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
  border-top: 1px solid #555;
  display: none;
}


.pipeline-deal-action-card{
  padding: 10px;
  border-radius: 4px;
  border: 2px dashed #e0e3e4;
  height: 80px;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0e3e4;

  transition: all 0.2s ease;

}


.pipeline-deal-action-card.drag-over {
  background-color: rgba(0, 0, 0, 0.1);
  color: #fff;}

#pipeline_column_sWON.drag-over {
  background-color: rgba(40, 167, 69, 0.2);
}

#pipeline_column_sLOST.drag-over {
  background-color: rgba(220, 53, 69, 0.2);
}

#pipeline_column_sDELETE.drag-over {
  background-color: rgba(108, 117, 125, 0.2);
}

/* Pipeline End */



.invoice-item-full-12{
  position: relative;
  width: 100%;
  padding-right: 8px;
}

.invoice-item-full-6{
  position: relative;
  width: 50%;
  padding-right: 8px;
}

.invoice-item-full-4{
  position: relative;
  width: 33.3333%;
  padding-right: 8px;
}

.invoice-item-full-8{
  position: relative;
  width: 66.6666%;
  padding-right: 8px;
}

.invoice-item-full-12 > .ddown-items-wrap {
  left: 0;
}


.invoice-item-right {
  position: relative;
  text-align: right;
}


.invoice_item_c1{

  min-width: 300px;

}

.invoice_item_c2{

  margin-left: 20px;
  display: flex;
  align-items: start;

}

.invoice-items-label{
    margin-bottom: 2px !important;
    font-size: 12px;
    color: rgba(50, 65, 72, 0.7);
}

.invoice_footer_row {
  font-size: 16px;
}

.invoice_footer_total {
  font-weight: 700;
}


.hk-footer-wrap{
  padding-top: 20px;
  position: unset;
  bottom: unset;
}

.fix-width-36{
  width: 36px;
}

.fix-width-20{
  width: 20px;
}


#drop-area{
  width: 100%;
  height: 175px;
  background: #f5f5f5;
  text-align: center;
  border: 2px dashed #e0e3e4;
}

.drop-text{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: cadetblue;
  font-size: 20px;

}


.output{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px;
}

span{
  display: block;
}

.makeMiddle{
  display: flex;

}

.pushRight{
  margin-right: 10px;
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}



.dd3-content{
  border: unset;
}


.dd3-content:hover{
  background-color: #fff !important;
}

.dd3-item:not(:hover) .dd3-handle {
  opacity: 0.2;
  transition: opacity .3s ease-in-out;

}

.dd3-handle {
  border-radius: 50%;
  cursor: grab;
  border-width: 0;
}

@media only screen and (max-width: 767px) {

  .dd3-handle {
    display: none;
  }

  .dd3-content {
    padding: 8px 8px 8px 8px;
  }
}




.dd3-handle:before {
    font-family: "Ionicons";
    content: "\f1cb";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #9e9e9e;
    display: block;
    position: absolute;
    left: 0;
    top: 8px;
    width: 100%;
    text-align: center;
    text-indent: 0;
}


.dd{
  max-width: unset;
}


.invoice-details-bold, .amount-details-bold{
    font-weight: 600 !important;
    color: #000;
}

.invoice-details-total-box, .amount-details-total-box{
  display: flex;
  justify-content: left;
  margin-top: -10px;
}

.invoice-details-total-box-small, .amount-details-total-box-small{
    font-weight: 800 !important;
    font-size: 14px;
    padding-top: 5px;
    color: #000;
}

.invoice-details-total-box-big, .amount-details-total-box-big{
    font-weight: 800 !important;
    font-size: 24px;
    color: #000;
}

.invoice-payment-details-amount{
    font-weight: 800 !important;
}


.p-overview-bold-number{

    font-weight: 800 !important;
    font-size: 32px;
    color: #000;

}

.timeline-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot{
    display: flex;
    align-content: center;
    justify-content: center;
    min-width: 15px;
    min-height: 15px;
    border-radius: 50%;
    background-color: #f1f1f1;
    text-align: center;
    overflow: hidden;
    font-size: 13px;
    align-items: center;
    border: 2px solid rgba(50, 65, 72, 0.7);
    margin-top: 4px;
}

.timeline-line{
  height: 100%;
  width: 1px;
  border-left: 1px solid rgba(50, 65, 72, 0.4);
  margin-top: 3px;
}

.invoice-activity-items:last-child .timeline-line{
  border-left: unset;
}

.history-activity-container .history-activity-item:last-child .timeline-line {
  border-left: unset;
}

.timeline-item{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 10px;
}

.timeline-badge{
  padding-top: 2px;
}

.invoice-title{
    font-weight: 700 !important;
    text-transform: uppercase;
    margin-right: 10px;
}

.invoice-company-details{
  font-size: 14px;
}

.invoice-company-name{
  font-weight: 600;
}

.invoice-details-client-panel{

  border-radius: 8px;

  display: flex;
  flex-wrap: wrap;

}

.accordion .card .card-header > a {
    background: #fff;
    color: #ab26aa;
  }


.invoice_activities_small{
  font-size: 10px;
  color: #9e9e9e;
}

.invoice_activities_med{
  font-size: 12px;
}

.gray-hover {
  transition: background-color 0.2s;
}

.gray-hover:hover {
  background-color: #f8f9fa;
}

/* Hide the browser's default #checkbox */
.pushRight input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.pushRight:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.pushRight input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.pushRight input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.pushRight .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


.pl_column_wrapper{
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-flow: row nowrap;
  overflow-x: scroll;
  scroll-snap-type: x proximity;

}

.pl_column{
  min-width: 160px;
  scroll-snap-align: end;

  border: solid #f1f1f1;
  border-width: 0 1px 0 0;

  padding: 0 4px 0 4px;

}

.total_received{
    text-align: right;
    padding: 0 6px;
    background-color: #f1f1f1;
    font-size: 12px;
}

.pl_card{
  margin: 10px 4px 4px 4px;

  padding: 4px;

  border: solid #f5f5f5;
  border-width: 1px 1px 1px 1px;
  border-radius: 4px;


}

.pl_card:hover {
  background-color: #fafafa;
}

.pl_card_project{
    font-size: 14px;  
}

.pl_card_client{
    font-size: 10px;  
    color: #9e9e9e;
}

.pl_card_cost{
    text-align: right;
    font-size: 12px;  
}

.pl_status{
    text-align: center;
    font-size: 12px;
    background-color: #000;
    color: #fff;
    margin: 10px 0 0 0;
}


.modal-Content-Receipt-Title{

  color: #8F2C88;
  font-size: 18px;
  font-weight: 800;

}


.modal-Content-Receipt-Amount{

  color: #8F2C88;
  font-size: 26px;
  font-weight: 800;
  margin-top: -10px;

}


.IS-Category-Category{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 50px;
  text-align: center;

  background-color: rgba(0, 0, 0, 0.1);
  color: #8F2C88;

  font-size: 14px;
  font-weight: 600;

  border-radius: 10px;

  padding: 20px;
  margin: 4px;

  cursor: pointer;

}

.IS-Category-Category:hover{
  background-color: #f5f5f5;
}



.IS-Category-Item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 225px;
  height: 225px;
  text-align: center;

  font-size: 12px;

  border: 1px solid rgba(50, 65, 72, 0.7);
  border-radius: 10px;

  padding: 20px;
  margin: 4px;

  cursor: pointer;

}


.IS-Category-Item img{
  max-width: 100px;
  max-height: 100px;
}


.IS-Category-Item .item_Name {
  
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 3.9em;
    line-height: 1.3em;
    margin-bottom: 10px;

}

.IS-Category-Item .item_Price {
  font-size: 18px;
  font-weight: 800;
  color: #8F2C88;
}



.IS-Receipt-Item-List{
  padding-bottom: 20px;
  padding-top: 20px;
  overflow: scroll;
}



.IS_Receipt_Item .item-Price {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.IS_Receipt_Item .item-Name {
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 400;
}

.IS_Receipt_Item .item-Tax {
  color: #f5f5f5;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}





.IS-Receipt-Header .customer {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}


.total_Details{
  margin-left: 10px;
  margin-right: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);

}


.IS-Receipt-Footer .receipt-Total{

  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.IS-Receipt-Footer .receipt-Checkout{
  margin: 20px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.IS-Receipt-Footer .btn-checkout{
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}


.pl_status_-1{  background-color: #e91e63 !important; }
.pl_status_0{  background-color: #009688 !important; }
.pl_status_1{  background-color: #009688 !important; }
.pl_status_2{  background-color: #ffc107 !important; }
.pl_status_3{  background-color: #cddc39 !important; }
.pl_status_4{  background-color: #4caf50 !important; }

.mpointer {
  cursor: pointer !important;
}

.container_flex{
  display: flex;
}

.container_probability_cost{
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.pl_card_probability{
  font-size: 10px;
}

.p_badge{
  border-radius: 4px;
  padding: 0px 3px;
  font-size: 10px;
  letter-spacing: 0.3px;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  text-transform: capitalize;
  background-color: #f1f1f1;
  color: #768085;
}

.prewrap{
  white-space:pre-wrap;
}

.dropdown-item {
    display: flex;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}

.tbl_second-row {

  font-size: 12px;
  color: #7b7b7b;

}

.gfb_textarea{

    width: 100%;
    border-radius: 10px;
    padding: 10px;

}

.form_text {
  font-size: 16px;
  color: #000;
  padding: 8px;
  font-weight: 600;
}

.hide-on-pc{
  display: none;
}

.hide-me{
  display: none !important;
}

.unhide-me{
  display: block !important;
}


.table-responsive {
    overflow-x: unset;
    -webkit-overflow-scrolling: unset;
}


#Expenses_Table_filter, #Categories_Table_filter, #Accounts_Table_filter, #Invoices_Table_filter,
#Clients_Table_filter, #Items_Table_filter, #Contacts_Table_filter, #Transactions_Table_filter,
#Other_Income_Table_filter,
#Deals_Table_filter,
#Ongoing_Deals_Table_filter, #LeaveTypes_Table_filter,
#Tasks_Table_filter, #Team_Directory_Table_filter, #Holidays_Table_filter, #Access_Rights_Table_filter, #Fixed_Assets_Table_filter, #Tax_Submissions_Table_filter, #Quotations_Table_filter,
#Activities_Table_filter, #Loans_Table_filter, #claims_table_filter, #my_leaves_table_filter, #my_claims_table_filter {
    display: none;
}


#Expenses_Table_wrapper > .dt-buttons, #Categories_Table_wrapper > .dt-buttons, #Accounts_Table_wrapper > .dt-buttons, #Invoices_Table_wrapper > .dt-buttons, 
 #Clients_Table_wrapper > .dt-buttons, #Items_Table_wrapper > .dt-buttons, #Contacts_Table_wrapper > .dt-buttons, #Transactions_Table_wrapper > .dt-buttons,
#Other_Income_Table_wrapper > .dt-buttons, #Deals_Table_wrapper > .dt-buttons, #Tasks_Table_wrapper > .dt-buttons,
#Ongoing_Deals_Table_wrapper > .dt-buttons, #Team_Directory_Table_wrapper > .dt-buttons, #LeaveTypes_Table_wrapper > .dt-buttons,
#Holidays_Table_wrapper > .dt-buttons, #Access_Rights_Table_wrapper > .dt-buttons, #Fixed_Assets_Table_wrapper > .dt-buttons, #Tax_Submissions_Table_wrapper > .dt-buttons, #Quotations_Table_wrapper > .dt-buttons,
#Activities_Table_wrapper > .dt-buttons, #Loans_Table_wrapper > .dt-buttons, #claims_table_wrapper > .dt-buttons, #my_leaves_table_wrapper > .dt-buttons, #my_claims_table_wrapper > .dt-buttons {
    display: none;  
}


#Vendors_Table_filter {
    display: none;
}


#Vendors_Table_wrapper > .dt-buttons{
    display: none;  
}

.clear-card{
  box-shadow: unset !important;
  border: unset !important;
  border-radius: unset !important;
}

.clear-card-border-only{
  box-shadow: unset !important;
}


.dt-align-right {
    text-align: right;
}

.dt-align-center {
  text-align: center;
}


/*
.dt_filter{
  transition: width .3s ease-in-out;
}


.dt_filter:focus{
  width: 350px;
  transition: width .3s ease-in-out;
}


*/

@media only screen and (max-width: 767px) {

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

}


@media screen and (max-width: 1200px) {
  .hide-on-pc{
    display: block;
  }
}



.lb-bg {
 

  display: none;
  z-index: 1030;
 
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  bottom: 0;
  z-index: 1030;
  border: none;
  background-color: rgba(0, 0, 0, 0);


  transition-property: background-color;
  -webkit-transition: background-color 0.4s ease;
  -moz-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
  
}


.lb-bg-toggle {
  display: block;
  background-color: rgba(0, 0, 0, 0.1);

}



.bottom-menu-items{
  position: fixed;
  bottom: 0;
  width: 200px;
  padding: 8px;
}


.hk-right-panel {

  position: fixed;
  top: 0;
  right: -810px;
  width: 810px;
  max-width: 100%;
  bottom: 0;
  z-index: 1040;
  border: none;
  background: #fff;
  box-shadow: 0 28px 28px rgba(0, 0, 0, 0.07);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}






.hk-right-panel-toggle {
    right: 0;
}

.right-panel-wrap{
  padding: 20px;
}

.right-panel-head{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;


}

.right-panel-close{

    color: #adb3b6;
    position: absolute;
    right: 10px;
    top: 10px;

}

.right-panel-head a .feather-icon > svg{

 
    height: 18px;
    width: 18px;


}

.add_New {
    position: sticky;
    padding-top: 10px;
    top: -10px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.user-initials{
    display: flex;
    align-content: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f1f1f1;
    text-align: center;
    overflow: hidden;
    font-size: 13px;
    align-items: center;
    border: 1px solid rgba(50, 65, 72, 0.7);
}

.f_sb{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.f_sb_m{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.f_sb_w{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}



.f_sb_nw{
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
}


.f_sb_c{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.f_sb_t{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}


.f_l{
  display: flex;
  justify-content: left;
}


.f_l_clm{
  display: flex;
  justify-content: left;
  flex-direction: column;
}


.f_c_clm{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  align-items: center;
}


.w40p{
  width: 40%;
}

.f_l_c{
  display: flex;
  justify-content: left;
  align-items: center;

}

.f_r_c {
  display: flex;
  justify-content: right;
  align-items: center;

}


.f_l_w{
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;

}


.item-list-box-wrapper{

  min-width: 300px;

}

.invoice_logo_drop{
    height: 80px;
    border: 1px dashed #babec5;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    padding: 20px 20px;
    background: #fff;
    font-size: 12px;
}

.phone_country_item_text, .company_country_item_text{
  max-width: 250px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  min-width: 150px;
}

.phone_country_item_code, .company_country_item_code{

  margin-left: 20px;

}

.search_in_ccodes_wrap{
    position: absolute;
    color: #324148;
    border-color: #e0e3e4;
    top: calc(100% - 2px);
    left: 15px;
    z-index: 195;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
    height: auto !important;

}

.ddown-items-wrap{
    position: absolute;
    color: #324148;
    border-color: #e0e3e4;
    top: calc(100% - 2px);
    left: 15px;
    z-index: 195;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
    height: auto !important;
    max-height: 300px;
    overflow-y: auto;

}


.ddown-items{
    position: relative;
    overflow: scroll;
    width: auto;
    max-height: 200px;  
}


.ddown-items::-webkit-scrollbar {
    display: none;
}

.ddown-items {
  scrollbar-width: none;  /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}



.ddown_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #6c757d;
    white-space: nowrap;  
}



.ccode-items{
    position: relative;
    overflow: scroll;
    width: auto;
    max-height: 200px;  
}



.ccodes_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #6c757d;
    white-space: nowrap;  
}

.btn-icon-md > i {
    font-size: 20px !important;
}

.breadcrumb-item {
    display: -ms-flexbox;
    display: flex;
    align-items: baseline;
  }

.breadcrumb {
  margin-bottom: 8px !important;
}

label {
  margin-bottom: 2px !important;
  margin-left: 4px;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(50, 65, 72, 0.7);
}


.dd_d_w_icon {
  padding-right: 28px;
  background-color: #fff !important;
  background: url("/images/form/chevron-down.svg") no-repeat;
  background-size: 16px;
  background-position: right 8px bottom 10px;
}

.dd_d_w_icon[aria-expanded="true"] {
  background: url("/images/form/chevron-up.svg") no-repeat;
  background-size: 16px;
  background-position: right 8px bottom 10px;
  border-color: #BC08B0;
}


.dd_sm_d_w_icon {
  padding-right: 28px;
  background-color: #fff !important;
  background: url("/images/form/chevron-down.svg") no-repeat;
  background-size: 16px;
  background-position: right 8px bottom 8px;
}

.dd_sm_d_w_icon[aria-expanded="true"] {
  background: url("/images/form/chevron-up.svg") no-repeat;
  background-size: 16px;
  background-position: right 8px bottom 8px;
  border-color: #BC08B0;
}



.dd_w_icon {
  padding-right: 28px;
  background-color: #fff !important;
  background: url("/images/form/chevron-down.svg") no-repeat;
  background-size: 16px;
  background-position: right 8px bottom 10px;
}

.dd_w_icon:focus {
  background: url("/images/form/chevron-up.svg") no-repeat;
  background-size: 16px;
  background-position: right 8px bottom 10px;
}

.date_w_icon {
  padding-right: 28px;
  background-color: #fff !important;
  background: url("/images/form/date.svg") no-repeat;
  background-size: 16px;
  background-position: right 8px bottom 10px;
}

.date_w_icon:focus {
  background: url("/images/form/date-f.svg") no-repeat;
  background-size: 16px;
  background-position: right 8px bottom 10px;
}

.dd_second_data{
  font-size: 14px;
  color: #BFBFBF;
}

.form-control{
  border-radius: 8px;
  border-width: 1px;
}

.btn{
  border-radius: 8px;  
}


.dropdown-item.active, .dropdown-item:active {
    color: #324148;
    text-decoration: none;
    background-color: rgba(171,38,170, 0.08);
}

.second_row{
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}

.button-p:hover {
  color: #BC08B0 !important;
}

.loader_logo{
  position: fixed; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-tabs-scroll{
  flex-wrap: nowrap !important;
  overflow-x: scroll;
}

.nav-tabs-scroll {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
.nav-tabs-scroll::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}


.dataTables_filter > label {
  width: 250px;
}

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

.dataTables_paginate{
  margin-top: 24px;
  margin-bottom: 20px;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
    cursor: pointer;
}

.v-nav-close-wrap {
  padding: 16px;
}

.ofc-v-nav{

    position: fixed;
    top: 57px;
    left: 0;
    width: 240px;
    margin-left: 0;
    bottom: 0;
    z-index: 100;
    border: none;
    box-shadow: 0 0 28px rgba(0, 0, 0, 0.07);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;

    background-color: #fff;

}

.nav-card-icon, .nav-card-text {
  display: flex;
  justify-content: center;
  font-size: 12px;
  color: #8C8D91;
}


.nav-links-wrapper{
  padding: 16px;
}

.nav-menu-cards{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;

  gap: 16px 16px;

  margin-bottom: 10px;

}

.nav-menu-card{

  width: calc(50% - 8px);
  aspect-ratio: 1;
  border: 2px solid #f5f5f5;

  border-radius: 10px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

   .nav-hide{
    left: 0%;
   }


.nav-div-header {
    padding: .5rem .5rem;
    width: 240px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
}


.f_end{
  display: flex;
  justify-content: flex-end;
}

.company-logo-image{
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (max-width: 767px) {

  .reverse-on-mobile{

    flex-direction: column-reverse;

  }

  .hide-on-mobile{
    display: none;
  }

  .rows_on_mobile{
    flex-direction: column;
    row-gap: 14px;
  }

  .expenses_buttons_mobile_fix {
    width: 100%;
    margin-bottom: 14px;
  }

  .expense-item {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
    font-size: 14px;
  }


   .ofc-v-nav{
    width: 100% !important;
    top: 0px;
    z-index: 1500;

   }

   .nav-hide{
    left: -100%;
   }

   .nav-menu-card{
      width: calc(25% - 8px);
    }

.nav-menu-cards{
  gap: 8px 8px;
}


}

.show-on-tablet{
  display: none;
}

pc {
   .show-on-tablet{
    display: block;
   }

.hide-on-tablet{
  display: none;
}


}


@media screen and (min-width: 767px) and (max-width: 1200px) {
   .nav-hide{
    left: -240px;
   }

   .hide-on-mobile{
    display: none;
   }

}

.highlight-on-hover:hover{
  background-color: #f5f5f5;
}

.accounts-card-account-name{
  font-size: 16px;
  font-weight: 600;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.legend-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.legend-box-item{
  font-size: 10px;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
}

.legend-exchange-rate {
  font-size: 10px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.smaller-text{
  font-size: 12px !important;
  font-weight: 500;
}

.tiny-text {
  font-size: 8px;
  font-weight: 500;
}

.seperator_top{
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.dasboard_card_menu{
  font-size: 12px !important;
}

.card_loader{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

/* Dashboard Quick Actions */

.dashboard-quick-actions{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* gap: 4px; */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dashboard-quick-actions-item {
  width: 80px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 8px;
}

.dashboard-quick-actions-item-icon {
  font-size: 48px;

  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: #F5F5F5;

  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;

}

.dashboard-quick-actions-item-text {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 15px;
  height: 36px;
  text-transform: capitalize;
}


.dashboard-quick-actions-item:hover .dashboard-quick-actions-item-icon {
  color: #fff;
  background-color: #8F2C88;
}

.dashboard-quick-actions-item:hover .dashboard-quick-actions-item-text {
  color: #8F2C88;
}


.dashboard-accounts-container{
  container-type: inline-size;
}

.dashboard-accounts-column-1{
  width: 50%;
  padding-right: 10px;
}
.dashboard-accounts-column-2{
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
@container (max-width: 300px) {
  .dashboard-accounts-column-1 {
    max-width: 100%;
    width: 100%;
  }
  .dashboard-accounts-column-2 {
    max-width: 100%;
    width: 100%;
  }
}




/* tweaks */

.disabled{
  color: #c1c6c8;
}

.card .card-header{
  text-transform: unset !important;
  font-weight: 400 !important;

  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.card {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* Vertical Nav */

.oaid_v_nav_category {
  position: relative;
  transition: background-color 0.3s ease;
}

.nav-arrow {
  position: absolute;
  right: -4px;
  top: 40%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #f6f6f6;
  /* Adjust color as needed */
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

/* Optional: Delay arrow appearance slightly on hover for smoother effect */
.oaid_v_nav_category:hover .nav-arrow {
  transition-delay: 0.3s;
}

.material-symbols-rounded {
  font-variation-settings:
    'FILL' 0,
    'wght' 600,
    'GRAD' 0,
    'opsz' 24
}

.material-symbols-rounded-smaller {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 0;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  margin: 0;
  padding: 0;
  margin-top: -2px;
  vertical-align: middle;
  align-items: center;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}




.oaid_v_nav_category {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;

}

.oid-vnav-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px;
  z-index: 200 !important;
}

.oaid_v_nav_category_container {
  margin-top: 8px;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;

}

.oid-vnav-second-menu {
  position: fixed;
  top: 57px;
  left: -200px;
  width: 200px;
  margin-left: 0;
  bottom: 0;
  padding: 8px;
  z-index: 199;
  border: none;
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.07);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: #fff;
  
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;

}

.oid-vnav:hover .oid-vnav-second-menu,
.oid-vnav .oid-vnav-second-menu:hover {
  left: 80px;
}

.oaid_v_nav_category {
  text-align: center;
  margin-bottom: 12px;
  cursor: pointer;
}

.oaid_v_nav_category_icon {
  margin: 2px auto;
  height: 36px;
  width: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.oaid_v_nav_category.active .oaid_v_nav_category_icon {
  background-color: rgba(255, 255, 255, 0.3);
}

.oaid_v_nav_category.active {
  color: rgba(255, 255, 255, 1);
}

.oaid_v_nav_category:hover {
  color: rgba(255, 255, 255, 0.8);
}

.oid-vnav-second-menu-group-icons-wrapper{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.rotate-180{
  transform: rotate(180deg);
}

.oid-vnav-second-menu-group-title{
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #8F2C88;
}

.oid-vnav-second-menu-group-item{
  width: 86px;
  height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 8px;
}

.oid-vnav-second-menu-group-item-icon{
  font-size: 48px;

  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;  
  border-radius: 8px;
  background-color: #F5F5F5;

  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;  

}

.oid-vnav-second-menu-group-item-text{
  font-size: 14px;
  font-weight: 500;
}

.oid-vnav-second-menu-group-item:hover .oid-vnav-second-menu-group-item-icon{
  color: #fff;
  background-color: #8F2C88;
}

.oid-vnav-second-menu-group-item:hover .oid-vnav-second-menu-group-item-text{
  color: #8F2C88;
}

.hk-nav {
  width: 80px !important;
}

.hk-pg-wrapper{
  margin-left: 80px !important;
}
.hk-nav {
  top: 57px !important;
}

.hk-auth-wrapper{
  margin-left: 0 !important;
}

.hk-navbar{
  height: 57px !important;
}

@media screen and (min-width: 767px) and (max-width: 1200px) {
  .hk-pg-wrapper {
      margin-left: 80px !important;
    }

  .hk-nav {
    top: 57px !important;
  }

} 

@media only screen and (max-width: 767px) {
  .hk-pg-wrapper {
      margin-left: 0px !important;
    }

    .hk-nav {
      top: 0px !important;
      display: none;
    }


} 


/* Form wizard - Steps */

.steps {
  display: flex;
  align-items: start;
  max-width: 800px;
  margin: 20px 0;
  list-style-type: none;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
}

.steps li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 16px 8px 8px;
  color: #6b7280;
  font-size: 14px;
}

.steps li.active {
  color: #8F2C88;
}

.steps li::before {
  content: attr(data-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #6b7280;
  margin-right: 12px;
  font-size: 14px;
}

.steps li.active::before {
  background: #8F2C88;
  color: white;
}

.steps li+li {
  padding-left: 36px;
}

.steps li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #e5e7eb;
  border-right: 2px solid #e5e7eb;
  transform: translateX(50%) rotate(45deg);
}

.red-one{
  background-color: #f83f37 !important;
  color: #fff !important;
}

.red-one:hover{
  background-color: #000 !important;
  color: #fff !important;
}
.dashboard-quick-actions-item:hover .red-one {
  color: #fff;
  background-color: #000 !important;
}

.limitv400{
  max-height: 400px;
  overflow-y: auto;
}

.table-report-footer{
  font-weight: 600 !important;
  padding-bottom: 10px !important;
}

.hover-effect{
  transition: all 0.3s ease;
  color: #8F2C88 !important;
}

.hover-effect:hover{
  color: #8F2C88 !important;
  text-decoration: underline !important;
  text-decoration-style: dotted !important;
  text-decoration-color: #8F2C88 !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 4px !important;  
}

.max-content{
  min-width: 100%;
  width: max-content;
}

.remove-custom-policy {
  cursor: pointer;
  margin-left: 5px;
  color: #dc3545;
  font-size: 14px;
  transition: color 0.2s;
}

.remove-custom-policy:hover {
  color: #bd2130;
}

.custom-policy-badge {
  display: inline-flex;
  align-items: center;
}


.form-item-warning {
  color: red;
  font-size: 12px;
  font-weight: 600;
}

.form-item-warning:not(:empty) {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-item-warning:not(:empty)::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="red" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12.01" y2="16"></line></svg>');}



.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #8F2C88 !important;
  border: 1px solid #fff !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 2px 8px !important;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-selection__choice {
  background-color: #f0f0f0 !important;
  border: 1px solid #ccc !important;
}

.contact-email {
  font-size: 12px;
  display: block;
}

.contact-name {
  font-weight: bold;
  display: block;
}

.explainer-box{
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  border-left: 2px solid #6b7280;
  padding-left: 20px;
  margin-left: 20px;
}


.complete-network-activity, .complete-deal-activity {
  color: #28a745;
  transition: all 0.2s;
}

.complete-network-activity:hover, .complete-deal-activity:hover {
  transform: scale(1.2);
  color: #218838;
}

.comment-section {
  max-height: 600px;
  overflow-y: auto;
}

.comment-item {
  padding: 15px 0;
  border-bottom: 1px solid #e8ecef;
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.comment-author {
  font-weight: 600;
  color: #324148;
}

.comment-time {
  font-size: 12px;
  color: #8898aa;
}

.comment-text {
  color: #526484;
  line-height: 1.5;
  word-wrap: break-word;
}

.comment-actions {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.comment-action-btn {
  background: none;
  border: none;
  color: #6c757d;
  font-size: 12px;
  padding: 4px 12px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 4px;
}

.comment-action-btn:hover {
  background: #f8f9fa;
  color: #3B8DDE;
}

.reply-section {
  margin-left: 40px;
  margin-top: 10px;
  padding-left: 20px;
}

.comment-input-box {
  margin-bottom: 20px;
}

.comment-input-wrapper {
  width: 100%;
}

.comment-reactions {
  display: flex;
  gap: 5px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.reaction-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 12px;
  background: #f1f3f4;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.reaction-badge:hover {
  background: #e4e7ea;
  transform: scale(1.05);
}

.reaction-count {
  margin-left: 4px;
  font-size: 12px;
  color: #526484;
}

.edit-comment-textarea {
  width: 100%;
  min-height: 60px;
  padding: 8px;
  border: 1px solid #d4d8dd;
  border-radius: 4px;
  resize: vertical;
}

.edited-badge {
  font-size: 11px;
  color: #8898aa;
  font-style: italic;
}

.reaction-emoji-picker {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #d4d8dd;
  border-radius: 4px;
  background: #f8f9fa;
}

.emoji-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
}

.emoji-item {
  padding: 8px;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  font-size: 20px;
  transition: background 0.2s;
}

.emoji-item:hover {
  background: #e1e5eb;
}

.reaction-icon-picker {
  background: #ffffff;
  border: 1px solid #d4d8dd;
  border-radius: 8px;
  padding: 15px;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.task-reaction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.task-reaction-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border: 1px solid #e8ecef;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  background: #ffffff;
}

.task-reaction-item:hover {
  background: #f8f9fa;
  border-color: #3B8DDE;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(59, 141, 222, 0.2);
}

.task-reaction-item .material-symbols-rounded {
  font-size: 24px;
  color: #495057;
  margin-bottom: 4px;
}

.task-reaction-item:hover .material-symbols-rounded {
  color: #3B8DDE;
}

.task-icon-label {
  font-size: 11px;
  color: #6c757d;
  text-align: center;
}