 .notification-wrapper {
            position: relative;
        }

        .notification-dropdown {
            position: absolute;
            top: 120%;
            right: 0;
            background-color: #fff;
            border: 1px solid #ccc;
            min-width: 250px;
            padding: 0.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            border-radius: 0.5rem;
        }

        .notification-dropdown .dropdown-item {
            padding: 0.75rem 1rem;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: background 0.2s ease;
            color: black;
        }

        .notification-dropdown .dropdown-item:hover {
            background-color: #f1f1f1;
        }

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

        .d-none {
            display: none !important;
        }
        /*  Code  for profile Tab */
         .profile-dropdown {
    width: 280px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: none;
    padding: 0;
    overflow: hidden;
  }
  
  .profile-header {
    padding: 16px;
    text-align: center;
    background: #000000ad;
    border-bottom: 1px solid #e9ecef;
  }
  
  .profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0000006c;
    color: rgb(255, 255, 255);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .profile-nav-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #00000092;
    color: white;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
  }
  
  .profile-field {
    padding: 12px 16px;
  }
  
  .profile-field-label {
    font-size: 12px;
    color: #0e0e0e;
    margin-bottom: 4px;
    display: block;
    text-align: left;
  }
  
  .profile-field-value {
    width: 100%;
    padding: 8px 12px;
    background: #eeeeee;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    color: rgb(0, 0, 0);
  }
  
  .profile-footer {
    padding: 12px 16px;
    border-top: 1px solid #000000;
  }
  
  .logout-btn {
    width: 100%;
    padding: 8px 16px;
    background: white;
    border: 1px solid #0c0c0c;
    border-radius: 4px;
    color: #0b0b0b;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .logout-btn:hover {
    background: #f8f9fa;
  }


/* General dropdown container */
#filesDropdownMenu.dropdown-menu {
  background-color: #1e1e2f !important; /* Dark navy */
  color: #ffffff !important;
  border: 1px solid #2c2f3f;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  padding: 0.25rem 0;
  border-radius: 8px;
}

/* Regular file items */
#filesDropdownMenu .dropdown-item {
  color: #ffffff !important;
  background-color: transparent !important;
  font-weight: 500;
  white-space: normal;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #2c2f3f;
  transition: background 0.2s ease;
}

/* Hover state for file items */
#filesDropdownMenu .dropdown-item:hover {
  background-color: #2d2f40 !important;
  color: #ffffff !important;
}

/* File name styling */
#filesDropdownMenu .file-name {
  color: #ffffff !important;
  font-weight: 600;
  line-height: 1.2;
  word-break: break-word;
}

/* UID styling */
.dropdown-item .text-muted {
  color: #bbbbbb !important;
  font-size: 0.75rem;
}

/* Add File - Special styling */
#filesDropdownMenu .dropdown-item.add-file {
  color: #0d6efd !important;  /* Bootstrap primary blue */
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Add File hover effect */
#filesDropdownMenu .dropdown-item.add-file:hover {
  background-color: #e7f1ff !important;
  color: #0d6efd !important;
}

.file-dropdown .dropdown-item {
  color: #ffffff;
  background-color: #212529;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.file-dropdown .dropdown-item:hover {
  background-color: #343a40;
}

.file-dropdown .dropdown-item.text-primary {
  color: #0d6efd !important;
  font-weight: 500;
}

/* Scrollable Files Dropdown */
#filesDropdownMenu {
  max-height: 500px; /* Adjust height as needed */
  overflow-y: auto;
  overflow-x: hidden;
}
