
body {
  background: url('../Icons/background.jpg') no-repeat center center fixed;
  background-size: cover;
}
.hidden-spinner {
  display: none;
}


.navbar .ml-auto {
  margin-left: auto;
}

.presence-dot, .presence-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
}
.presence-dot {
  border-radius: 50%;
}

.presence-available { background-color: green; }
.presence-away { background-color: rgb(255, 200, 0); }
.presence-brb { background-color: orange; }
.presence-busy { background-color: rgb(255, 0, 0); }
.presence-dnd { background-color: darkred; }
.presence-offline { background-color: gray; }
.presence-unknown { background-color: lightgray; }
.icon-call { color: #ff0000; }
.icon-conference { color: #17a2b8; }
.icon-meeting { color: #a72828; }
.icon-presenting { color: #2007ff; }
.icon-inactive { color: #6c757d; }

.avatar-small {
  width: 20px;  /* Adjust the size as needed */
  height: 20px; /* Adjust the size as needed */
  border-radius: 50%; /* Makes the image circular */
}
.sort-icon {
  margin-left: 5px;
  display: inline-block;
  width: 10px;
  height: 10px;
}
.sort-asc::after {
  content: '▼';
}
.sort-desc::after {
  content: '▲';
}
/*.contacts-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 30px;
  margin: 30px;
}
.contact-cell {
  width: 100%;
  padding: 15px;
  vertical-align: top;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 30px;
}
  */
  .task-column {
    min-height: 250px;
    border: 0px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 0.1rem;
    background-color: #f8f9fa07;
    transition: background-color 0.3s ease;
}

.task-column.drag-over {
    background-color: #e9ecef;
}

.card {
    cursor: move;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.task-card {
  padding: 10px;         /* Reduce padding */
  margin-bottom: 2px;    /* Reduce margin to make the cards smaller */
  max-width: 100%;       /* Ensure cards fit well in columns */
}
.border-warning {
  border: 2px solid yellow;  /* Yellow border for reminders */
}

.border-danger {
  border: 2px solid red;     /* Reddish border for overdue tasks */
}
.task-buttons {
  display: flex;
  gap: 5px;  /* Adjust spacing between the buttons */
}
.verified-task {
  background-color: #e8f5e9;
  border-left: 5px solid #4caf50;
}

.ql-editor img {
  display: block;
  max-width: 100%;
}

.ql-editor .image-resizer {
  box-sizing: border-box;
  cursor: move;
}

.ql-editor .image-resizer .resize-handle {
  box-sizing: border-box;
  position: absolute;
  height: 12px;
  width: 12px;
  background: white;
  border: 1px solid #000;
  border-radius: 50%;
}

.ql-editor .image-resizer .resize-handle.se {
  bottom: -6px;
  right: -6px;
  cursor: se-resize;
}

.ql-editor .image-resizer .resize-handle.sw {
  bottom: -6px;
  left: -6px;
  cursor: sw-resize;
}

.ql-editor .image-resizer .resize-handle.nw {
  top: -6px;
  left: -6px;
  cursor: nw-resize;
}

.ql-editor .image-resizer .resize-handle.ne {
  top: -6px;
  right: -6px;
  cursor: ne-resize;
}
.ql-editor {

  max-height: 1000px; /* Maximum height */

  resize: both; /* Allow resizing in both horizontal and vertical directions */
  overflow: auto; /* Ensure content scrolls if it overflows */
  border: 1px solid #ccc; /* Optional: Add a border to make the resizable area visible */
}

.modal-content {
  height: 80vh; /* Set the height of the modal content */
}
/* Add to style.css */
.unread-news {
  font-weight: bold;

  border-left: 5px solid #0d6efd; /* Bootstrap primary color */
  padding-left: 15px;
  transition: all 0.3s ease;
}

.unread-news .card-title {
  color: #0d6efd;
}

.unread-news .card-body {
  position: relative;
}
.unread-news .card-body::before {
  content: "New";
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #0d6efd;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}