/* Header layout */
/* Header */
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 60px);
    z-index: 100000;
    background: transparent;
}

#header-logo-img {
    height: 40px;
    margin-top:5px;
}

/* Hamburger */
.menu-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-icon svg {
    width: 24px;
    height: 24px;
    margin-top:5px;
}

/* Overlay */
#right-popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
}

/* Popup Menu */
#right-popup-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 260px;
    background: #111;
    color: white;
    z-index: 9999;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

#right-popup-menu.open,
#right-popup-overlay.open {
    display: block;
}

#right-popup-menu .menu-header {
    font-size: 24px;
    margin-bottom: 15px;
}

#right-popup-menu .menu-items {
    list-style: none;
    padding: 0;
}

#right-popup-menu .menu-items li {
    margin: 10px 0;
    cursor: pointer;
    transition: color 0.3s;
}

#right-popup-menu .menu-items li:hover {
    color: #0ff;
}

::selection {
  background-color: #0d425b; /* Sets the background color of the selection to red */
  color: #ffffff;          /* Sets the text color within the selection to white */
}

/* For older Firefox versions, use the -moz- prefix */
::-moz-selection {
  background-color: #0d425b;
  color: #ffffff;
}
