.sidebar-header h1 {
  font-family: 'Reem Kufi', sans-serif;
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(to left, #f9e24c, rgba(226,238,249,0.26));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 4px rgb(218,135,10);
  letter-spacing: 1px;
}

#profileImageDisplay {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid #ccc;
}

.btn {
}

.custom-btn {
  background-color: #27ceb0;
  color: white;
}

.modalheader {
  background-color: #27ceb0;
  color: #ffffff;
}

.custom-alert {
  background-color: #d1f3fc;
  border: 1px solid #b3e7f7;
  border-radius: 10px;
  padding: 14px 18px;
  color: #03687d;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 320px;
  max-width: 420px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  pointer-events: auto;
}

.custom-alert.custom-success {
  background-color: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

.custom-alert.custom-danger {
  background-color: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

.custom-alert.custom-warning {
  background-color: #fff3cd;
  color: #856404;
  border-color: #ffeeba;
}

.message-text {
  flex: 1;
  padding-right: 10px;
}

.close-wrapper {
  position: relative;
  width: 30px;
  height: 30px;
}

.loader-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #b3e7f7;
  border-top: 2px solid #03687d;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.btn-close {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: #03687d;
  z-index: 1;
  cursor: pointer;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}

.tab-close-btn {
  background: none;
  border: none;
  font-size: 1rem;
  color: #6c757d;
  padding: 0;
  margin-left: 1px;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.tab-close-btn:hover {
  color: #dc3545;
}
.tab-content {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border: none !important;
}


.fullscreen-mode #sidebar,
.fullscreen-mode .navbar-custom,
.fullscreen-mode #profileArea,
.fullscreen-mode .modal,
.fullscreen-mode .modal-backdrop,
.fullscreen-mode #notification-container {
  display: none !important;
}

.fullscreen-mode .main-wrapper {
  margin-left: 0 !important;
}

.fullscreen-mode .content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: white; /* Or whatever background you want */
  overflow: auto;
  padding: 20px;
}
/**/

body.work-mode-active,
body.fullscreen {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}

.main-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.content.fullscreen-mode {
  flex: 1;
  overflow-y: auto;
  height: 100%;
  padding: 20px;
}

#tabContent,
#tabContent .tab-pane {
  height: 100%;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

