/* All Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
    --text-color: #fff;
    --sidebar-background: #1e1e1e;
    --main-content-background: #2c2c2c;
    --section-color: #363636;
    --headings-color: #3498db;
    --card-border: #145a8a;
    --blue-color: #1b84c5;
    --red-color: #e74c3c;
    --oragne-color: #f39c12;
    --dark-yellow-color: #d2a100;
    --light-yellow-color: #f5c618;
}

#navbar {
  flex: 0 0 4em;
  width: 100%;
  background-color: var(--sidebar-background);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1em;
  box-sizing: border-box;
}

.parent {
  display: flex;
  flex-direction: row;
}

#sidebar {
  width: 200px;
  background-color: var(--sidebar-background);
  color: white;
  display: flex;
  flex-direction: column;
  padding: 1em;
  box-sizing: border-box;
  height: 100vh;
  position: relative;
}

#content {
  padding: 1em;
  box-sizing: border-box;
  height: 100vh;
  background-color: var(--main-content-background);
  width: 100%;
  overflow: auto;
}

.h1-text-color {
  color: #1b84c5 !important;
}

#right-content {
  padding-left: 10px;
  padding-right: 10px;
  background-color: #1e1e1e;
}

#right-content h2 {
  color: #1b84c5;
}

#right-content .client-details {
  color: #f5c618;
}

  .bi {
    font-size: 1.5rem;
  }

.list-yellow {
  color: #f5c618;
}

a {
  color: #1b84c5;
  text-decoration: none;
  border-bottom: 1px solid #f5c618;
  white-space: nowrap;
}

a:hover {
  color: #f5c618;
    border-bottom: 1px solid #1b84c5;
}

.bottom-link {
    position: absolute;
    bottom: 0;
    border-bottom: none;
}

.no-border-link {
  border-bottom: none;
}

.no-border-link:hover {
  border-bottom: none;
}

#notificationsDropdown {
    display: none;
}

.show {
  display: block !important;
}

#notif-content {
  width: auto;
  background-color: #1e1e1e;
}

.messages {

}

.sessions {
  color: blue;
}

.notifItemContainer {
    border: 1px solid yellow;
    display: flex;
    transition: background-color 0.3s;  /* Smooth transition effect */
}

/*.notifItemContainer:hover {*/
/*    background-color: blue;  !* Change the background color on hover *!*/
/*    opacity: 0.4;*/
/*}*/

.notifItemContainer.messages:hover {
    background-color: blue;  /* Change the background color on hover */
  color: yellow;
    opacity: 0.7;
}

.notifItemContainer.sessions:hover{
    background-color: yellow;  /* Change the background color on hover */
  color: blue;
    opacity: 0.7;
}


/* Toast Message | pop-up */
.toast-message {
    position: fixed;
    bottom: 15px;
    right: 50%;
    padding: 10px;
    border-radius: 5px;
    color: var(--text-color);
    font-weight: bold;
    z-index: 1000;
}
.toast-message.success {
    background-color: var(--card-border); /* Green color for success */
}
.toast-message.error {
    background-color: var(--red-color); /* Red color for error */
}
.hidden {
    display: none;
}