﻿.menu-controls {
    display: flex;
    margin-bottom: 15px;
    padding: 8px 12px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
}

    .menu-controls label {
        font-weight: bold;
        margin-right: 8px;
    }

    .menu-controls select {
        padding: 5px 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-right: 20px;
    }

.total-count {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

    .menu-table th, .menu-table td {
        padding: 10px;
        border: 1px solid #ddd;
        text-align: left;
    }

.pagination {
    display: flex;
    gap: 5px;
    justify-content: center;
}

    .pagination button {
        padding: 6px 12px;
        border: 1px solid #ddd;
        background-color: #fff;
        cursor: pointer;
        border-radius: 4px;
        transition: background-color 0.2s ease;
    }

        .pagination button:hover:not(:disabled) {
            background-color: #f0f0f0;
        }

        .pagination button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

.active-page {
    background-color: #007bff;
    color: darkslategrey;
    border: 1px solid #007bff;
}

.show-password-btn {
    margin-left: 8px;
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
}


.action-cell {
    position: relative;
}

.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 2px 6px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    min-width: 50px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

    .dropdown-menu button {
        display: block;
        width: 100%;
        padding: 8px 10px;
        border: none;
        background: none;
        text-align: left;
        cursor: pointer;
    }

        .dropdown-menu button:hover {
            background-color: #f0f0f0;
        }

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}
