/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
  }
  
  /* Site Header */
  .site-header {
    direction: ltr;
    background-color: #0B1642;
    color: #00DCA2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 3rem;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: relative; /* Added so absolute elements inside are positioned relative to header */
}  
  
  /* Left side: brand */
  .header-left .brand-text {
    font-weight: bold;
    font-size: 1.4rem;
    color: #00DCA2;  /* Green brand text */
    letter-spacing: 0.5px;
  }
  
  /* Right side: icons */
  .header-right {
    display: flex;
    align-items: center;
    gap: 1rem; /* Space between icons */
  }
  
  /* Icons styling */
  .header-icon svg {
    display: block;    /* Remove inline gap */
    color: #00DCA2;    /* Fill color for the SVG path */
    width: 24px;
    height: 24px;
    transition: color 0.2s;
  }
  
  .header-icon:hover svg {
    color: #00b884;    /* Slight hover color change if desired */
  }
  
  .header-icon {
    text-decoration: none;
    cursor: pointer;
  }
  /* Overlay: full-screen dimmed background when menu is open */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Full-height sidebar menu (slides in from the right) */
.header-menu {
  direction: rtl;
  position: fixed;
  top: 0;
  right: 0;
  width: 75vw;
  max-width: 400px;
  height: 100vh;
  background: #0B1642;
  border-left: 1px solid #00DCA2;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.header-menu.open {
  transform: translateX(0);
}

/* Close button inside sidebar */
.menu-close-btn {
  align-self: flex-end;
  margin: 1rem 1rem 0 0;
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: #00DCA2;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.menu-close-btn:hover {
  color: #00b884;
}

.menu-close-btn svg {
  display: block;
  width: 28px;
  height: 28px;
}

.header-menu ul {
  list-style: none;
  margin: 0;
  padding: 1rem 1.5rem 2rem;
  flex: 1;
}

.header-menu ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 220, 162, 0.2);
}

.header-menu ul li:last-of-type {
  border-bottom: none;
}

.header-menu ul li a {
  color: #00DCA2;
  text-decoration: none;
  font-size: 1.1rem;
  display: block;
}

.header-menu ul li a:hover {
  text-decoration: underline;
  color: #00b884;
}

/* Disabled menu item (e.g., WhatsApp not enabled) */
.header-menu ul li .disabled-menu-item {
  color: #666;
  cursor: not-allowed;
  opacity: 0.5;
  font-size: 1.1rem;
}
button[onclick="endShift()"] {
  background-color: #dc3545;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

button[onclick="endShift()"]:hover {
  background-color: #c82333;
}
/* ===============
   Button Link Styles
   =============== */
   .btn-link {
    display: inline-block;
    padding: 0.3rem 2rem;
    background-color: #18E98D;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
    min-width: 100px;
}

.header-right .btn-link {
    min-width: 100px;
    padding: 0.4rem 1.5rem;
}

.btn-link:hover {
    background-color: #171F85;
}

.brand-text {
  text-decoration: none;
}
  /* Optional: for screens narrower than 600px, adjust spacing or size */
  @media (max-width: 600px) {
    .site-header {
      padding: 1.5rem 1rem;
    }
    .header-left .brand-text {
      font-size: 1.2rem;
    }
    .header-right {
      gap: 0.75rem;
    }
    .header-icon svg {
      width: 32px;  /* Increase the width */
      height: 32px; /* Increase the height */
    }
    }
  