/* css/custom.css */
.table {
    margin-top: 20px;
}

.navbar {
    border-bottom: 2px solid #ddd;
}
.navbar-item {
    border-right: 1px solid #ddd; /* Add a vertical line */
}

.navbar-item:last-child {
    border-right: none; /* Remove the border from the last item */
}
.navbar-item.dashboard {
    background-color: royalblue;
    color: white; /* Ensure text contrast */
}
.navbar .navbar-item.dashboard:hover {
    background-color: #4169e1 !important; /* Use !important as a last resort */
    color: white !important;
}
.dropdown-content {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    background-color: white;
    display: none;
    position: absolute;
    z-index: 1000;
    width: 100%;
}

.dropdown-content li {
    padding: 8px 12px;
    cursor: pointer;
}

.dropdown-content li:hover {
    background-color: #f0f0f0;
}
#reset_filters {
    background-color: #b0b0b0; /* Darker gray */
    color: #000; /* Black text for contrast */
    border-color: #999; /* Slightly darker border */
}

#reset_filters:hover {
    background-color: #999; /* Even darker gray on hover */
    border-color: #888;
}
.dropdown-menu {
    position: absolute;
    z-index: 1000;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.dropdown-item {
    padding: 8px 12px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}
#product-code-page {
    display: flex;
    gap: 2rem; /* Add spacing between form and info */
}

#product-code-form {
    flex: 1; /* Form takes up 50% of the page width */
}

#product-code-info {
    flex: 1; /* Info display takes up the other 50% */
    background-color: #f9f9f9;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}


