.new-header img {
    width: 50px; /* Adjust the width as needed */
    height: auto;
    margin-right: 10px; /* Adjust the margin as needed */
}body {
    background-color: black;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
}

.menu-header {
    position: sticky;
    top: 0;
    background-color: black;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 255, 0, 0.3);
    z-index: 1000;
}

.menu ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.menu li {
    margin-left: 15px;
}

.menu button {
    background-color: #333;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 10px 15px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
}

.menu button:hover {
    background-color: #222;
}


/* Menu Header Styling */
.menu-header {
    background-color: black;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgb(0 255 0);
    z-index: 1000;
}

/* Menu Styling */
.menu ul {
    display: flex;
    justify-content: flex-end; /* Align buttons to the right */
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    margin-left: 20px;
}

.menu button {
    background-color: #333; /* Dark button background */
    color: #00ff00; /* Green text */
    border: 1px solid #00ff00;
    padding: 10px 15px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
}

.menu button:hover {
    background-color: #222; /* Darken button on hover */
}


/* General Styling */
body {
    background-color: black;
    background-image: repeating-linear-gradient(
        90deg,
        black 0%,
        black 49%,
        #010101 50%,
        #010101 100%
    ), repeating-linear-gradient(
        0deg,
        black 0%,
        black 49%,
        #010101 50%,
        #010101 100%
    );
    color: #00ff00;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Courier New', Courier, monospace;
}

/* Wrapper Styling */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

#matrixCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Background layer */
}

.login-card {
    position: relative;
    z-index: 2; /* Above the canvas */
    background-color: black;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    max-width: 400px;
    width: 90%; /* Responsive width */
    text-align: center;
    color: green;
}

h2, p {
    margin-bottom: 20px;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: green;
}

input[type="text"],
input[type="password"] {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #333;
    border: 2px solid #00ff00;
    border-radius: 4px;
    color: green;
    font-size: 1em;
    outline: none;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder {
    color: #7fff7f;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #333;
    border: 2px solid #00ff00;
    border-radius: 4px;
    color: green;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #444;
    border-color: #00ff00;
}

/* Existing styles... */

/* Link Styling */
a {
    font-family: calibri;
    color: #71ef71; /* Light green */
    text-decoration: none; /* Remove underline from links */
    transition: color 0.3s; /* Smooth transition for color change */
    font-weight: bold;
}

a:hover {
    color: #add8e6; /* Light blue on hover */
}

/* Your existing styles... */

/* Specific override for the clicked node in jsTree */
#tree .jstree-clicked {
    background-color: #004d00 !important; /* Dark green */
    color: #00ff00 !important; /* Bright green text */
    box-shadow: none !important;
}

/* Specific override for the hovered node in jsTree */
#tree .jstree-hovered {
    background-color: #333333 !important; /* Dark grey */
    color: #00ff00 !important; /* Bright green text */
    box-shadow: none !important;
}

/* Override for the entire row when a node is clicked */
#tree .jstree-wholerow-clicked {
    background-color: #004d00 !important; /* Dark green */
}

/* Override for the entire row when a node is hovered */
#tree .jstree-wholerow-hovered {
    background-color: #333333 !important; /* Dark grey */
}


/* Styles for the access level dropdown */
.form-group select {
    width: 100%; /* Full width */
    padding: 10px; /* Padding for the dropdown */
    margin-bottom: 10px; /* Space below the dropdown */
    background-color: #333; /* Dark background for the dropdown */
    border: 2px solid #00ff00; /* Green border */
    border-radius: 4px; /* Rounded corners */
    color: #00ff00; /* Green text color */
    font-size: 1em; /* Font size */
    outline: none; /* No outline on focus */
    cursor: pointer; /* Pointer cursor */
}

/* Placeholder styling for the dropdown options (when supported) */
.form-group select option {
    background-color: black; /* Background color for options */
    color: #00ff00; /* Green text for options */
}

.header-container {
    display: flex;
    width: 95%; /* Full width of the header */
}

.header-left {
    flex: 0 0 30%; /* Fixed 30% width for the left column */
    color: #00ff00; /* Color for the heading */
    padding: 10px;
}

.header-right {
    flex: 0 0 70%; /* Fixed 70% width for the right column */
}

.header-left h3 {
    margin: 0; /* Remove default margin */
}

.trash-icon {
    position: fixed;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #00ff00;
    cursor: pointer;
    z-index: 10; /* Ensure it's on top of all layers */
    background: transparent; /* Remove any background color */
    padding: 5px;
}

.trash-icon:hover {
    color: #ff0000; /* Change color on hover for visibility */
}
/* Add space relative to header height */
.manage-customers-wrapper {
    margin-top: 400px; /* Set this to the height of your header */
}
table {
    margin-bottom: 20px; /* Adds space between table and other elements */
}



/* Styling for the active tokens page */
.active-tokens-wrapper {
    margin-top: 120px;
    padding: 20px;
    font-family: Arial, sans-serif;
}

#tokensTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#tokensTable th, #tokensTable td {
    padding: 10px;
    text-align: left;
    border: 1px solid #2a2a2a;
}

#tokensTable th {
    background-color: #2a2a2a;
}
