.company-header {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  text-align: center;
}

.company-header h1 {
  color: #ffffff;
  font-family: 'Jim Nightshade', cursive;
  font-size: 50px;
  font-weight: 10;
}

.company-header_main {
  align-items: center;
  background-color: #420000;
  border-bottom: var(--border-style);
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  padding: 0px 20px 0 20px;
  width: 100%;
}

.dashboard-header {
  position: sticky; /* or use fixed if you want it always visible */
  top: 0;
  z-index: 1000;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* optional for visual separation */
}

.company-header_main h2 {
  color: #ffffff;
  font-family: 'Jim Nightshade', cursive;
  font-size: 35px;
  font-weight: 10;
  padding: 12px;
  position: relative;
  top: 16px;
}

.logo-img {
  width: 60px; 
  height: 60px;
  border-radius: 12px;
}

.center-text {
  text-align: center;
}

.sidebar {
  background-color: #212529;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.sidebar h2 {
  margin-bottom: 30px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  cursor: pointer;
  margin: 10px 0;
  padding: 0 0 0 25%;
  transition: background-color 0.3s ease;
}

.sidebar li.active {
  background-color: #363d43;
  border-left: 4px solid #420000;
  border-radius: 8px;
  font-weight: 600;
  padding: 14px 20px;
  transition: all 0.3s ease;
  width: 100%;
}

header {
  align-items: center;
  background-color: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #dddddd;
  display: flex;
  justify-content: space-between;
  padding: 0px 10px 20px 0px;
}

.logout {
  background-color: #333333;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-weight: 600;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.logout:hover {
  background-color: #6b6b6b;
}

.user-block {
  align-items: center;
  background-color: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding: 20px;
}

.initials {
  color: white;
  font-family: 'Instrument Serif', serif;
  font-size: 37px;
  font-weight: 400;
}

.user-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.full-name {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.email {
  color: #ccc;
  font-size: 13px;
  opacity: 0.8;
}
