@media print {
    .body-wrapper {
        padding-top: 20px !important;
        
    }
    .page-wrapper{
        margin-left: 0  !important;
    }
    .print-visible {
        display: block !important;
    }

    .btn, .breadcrumb, .ti-dots-vertical, .ti-paperclip{
        display: none !important;
    }

    .card{
        border:0px!important;
    }
}

#sortable {
    list-style: none;
    padding: 0;
}

.sortable-draggable {
    cursor: grab;
}

.sortable-draggable:active {
    cursor: grabbing;
}

.drag-handle:hover {
    color: var(--bs-primary);
    cursor: grab;
}

.cool-background {
    width: 100%;
    height: 100px;
    background: linear-gradient(
        45deg,
        var(--bs-blue) 0%,
        var(--bs-purple) 20%,
        var(--bs-pink) 40%,
        var(--bs-red) 60%,
        var(--bs-orange) 80%,
        var(--bs-yellow) 100%
    );
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cool-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 150%;
    background: radial-gradient(
        circle at center,
        var(--bs-white, #fff) 0%,
        transparent 70%
    );
    opacity: 0.2;
    transform: rotate(15deg);
    z-index: 1;
}

.cool-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 150%;
    background: repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.2) 10px,
        transparent 10px,
        transparent 20px
    );
    opacity: 0.1;
    transform: rotate(-15deg);
    z-index: 1;
}

.hidden {
    display: none;
}

.dataTables_filter {
    float: right;
    text-align: right;
    margin-bottom: 20px;
}
.dataTables_filter label input {
    margin-left: 10px;
}

.fc-event-title {
    white-space: normal !important;
    word-wrap: break-word;
    overflow: visible !important;
}

.sortableTable th {
    cursor: pointer; /* Change cursor to pointer */
}

/* Keep sort icon and text on one line and vertically centered */
.sortableTable th .th-inner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.sortableTable th .th-inner .ti {
    line-height: 1;
}

.cursor-pointer {
    cursor: pointer; 
}

.wizard-content .wizard.wizard-circle > .steps > ul > li:after,
.wizard-content .wizard.wizard-circle > .steps > ul > li:before {
    top: 24px;
    background-color: #ebf3fe;
}

body
    .select2-container--default
    .select2-selection--multiple
    .select2-selection__choice,
body
    .select2-container--default
    .select2-selection--multiple
    .select2-selection__choice__remove {
    background-color: var(
        --bs-black
    ); /* Use Bootstrap's black color variable */
    border-color: var(--bs-black); /* Use Bootstrap's black color variable */
}

/* Change the background color of dropdown options */
.select2-container .select2-results__option {
    background-color: #ffffff; /* Replace with your desired color */
}

/* Change the background color of hovered options */
.select2-container .select2-results__option--highlighted {
    background-color: #d1e7dd; /* Replace with your desired color */
}

/* Change the background color of the selected option in the dropdown */
.select2-container .select2-selection {
    background-color: #e9ecef; /* Replace with your desired color */
}

.tenant-logos-preview {
    max-height: 60px;
    max-width: 600px;
}

.body-wrapper {
    padding-top: calc(70px + 5px);
}

.card {
    --bs-card-spacer-y: 20px;
    --bs-card-spacer-x: 20px;
}

.text-darkgreen {
    color: #008000;
}

.bg-darkgreen {
    background-color: #008000;
}

.text-darkred {
    color: #800000;
}

.bg-darkred {
    background-color: #800000;
}

.agenda_notes ul,
.agenda_notes ol {
    list-style: disc;
    padding-left: 20px;
}

.tox-tinymce {
    border: 1px solid #eee !important;
    border-radius: 0 !important;
}
.tox-editor-header {
    border-bottom: 1px solid #eee !important;
    padding: 2px !important;
}
.tox .tox-toolbar__primary {
    background: none !important;
}

.tox .tox-tbtn{
    height: 25px !important;
    margin:0 !important;
    border-radius:25px !important;
}

.rich-text ul {
    list-style: disc;      /* or 'circle', 'square', etc. */
    margin: 1em 0;         /* adjust margin as needed */
    padding-left: 40px;    /* adjust padding as needed */
}

.rich-text li {
    margin-bottom: 0.5em;  /* adjust spacing between list items */
}

.app-calendar .fc-toolbar-title{
    color:var(--bs-link-color-rgb);
}

.nav-item {
    cursor: pointer;
}

div[required] label::after {
    content: " *";
    color:var(--bs-red);
  }

.mw-50p{
    max-width:50px;
}

.mw-100p{
    max-width:100px;
}
.mw-200p{
    max-width:200px;
}
.mw-300p{
    max-width:300px;
}
.mw-400p{
    max-width:400px;
}
.mw-500p{
    max-width:500px;
}
.mw-600p{
    max-width:600px;
}
.mw-700p{
    max-width:700px;
}
.mw-800p{
    max-width:800px;
}
.mw-900p{
    max-width:900px;
}

.calendar-icon {
   display: inline-block;
   width: 60px;
   height: 60px;
   background: #fff;
   border: 1px solid #ddd;
   text-align: center;
   border-radius: 8px;
   box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
   margin-right: 10px;
   margin-top: -8px;
}
  
.calendar-icon .month-name {
   font-size: 12px;
   text-transform: uppercase;
   color: #555;
   margin-top: 5px;
}
  
.calendar-icon .day-number {
   font-size: 25px;
   font-weight: bold;
   color: #333;
   margin-top: -6px;
}

a.sidebar-link.active > span:nth-of-type(3) {
    background-color: white !important;
    color: var(--bs-primary)!important;
}

.message-container {
    max-width: 90%;
  }  
  .imessage-bubble {
    background-color: #0B93F6;
    color: white;
    position: relative;
  }
  .imessage-bubble-gray {
    background-color:rgb(36, 45, 51);
    color: white;
    position: relative;
  }
  
  #chat-box {
  height: 100%;
  overflow-y: scroll; /* Enables scroll */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}

#chat-box::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.table tr:last-child td {
    border-bottom: 0;
}

.bg-planningitem{
    background-color: #2f855a;
}

.bg-actiontask{
    background-color: #1d4ed8;
}

.btn-planningitem-outline   {
    border-color: #2f855a;
    color: #2f855a;
}

.btn-planningitem-outline:hover   {
    background-color: #2f855a;
    color: #FFF;
}


.btn-actiontask-outline{
    border-color: #1d4ed8;
    color: #1d4ed8;
}

.btn-actiontask-outline:hover{
    background-color: #1d4ed8;
    color: #FFF;
}

table.table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) > * {
    background-color: #f6f9fc!important;
    box-shadow: none!important;
  }

  table.table.dataTable.table-hover > tbody > tr:hover > * {
    background-color: #f6f9fc!important;
    box-shadow: none!important;
  }
  .fc .fc-daygrid-event .fc-event-title, .fc .fc-daygrid-event .fc-event-title * {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fc-custom-title .fc-time { opacity: 0.9; margin-right: 4px; }
.calendar-legend { margin: 10px 0 0 0; }
.calendar-legend .legend-swatch {
    display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 6px; vertical-align: -1px;
}
.committee-box-animate:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }

  .export-box-animate:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }
