
        /* Pagination Container */
        .pagination {
            display: flex;
            justify-content: end;
            align-items: center;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        /* Pagination Links */
        .pagination a,
        .pagination span {
            background-color: #007bff;
            color: white;
            border: 1px solid #007bff;
            padding: 8px 16px;
            margin: 0 5px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: background-color 0.3s, color 0.3s;
        }

        /* Hover and Active States */
        .pagination a:hover,
        .pagination .current {
            background-color: #0056b3;
            color: white;
        }

        .pagination .prev,
        .pagination .next {
            background-color: #e0e0e0;
            color: #333;
            padding: 8px 16px;
            border-radius: 4px;
        }

        .pagination .prev:hover,
        .pagination .next:hover {
            background-color: #007bff;
            color: white;
        }

        /* Disabled pagination links */
        .pagination .disabled {
            background-color: #ddd;
            color: #aaa;
            cursor: not-allowed;
        }

        .page-numbers {
            display: flex;
        }

        .search-container {
            padding: 10px 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: end;
        }

        .search-input {
            width: 250px;
            padding: 8px 14px;
            border: 1px solid #ccc;
            border-radius: 6px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .search-input:focus {
            border-color: #007bff;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
            outline: none;
        }

        .search-btn {
            padding: 4px 13px;
            font-weight: 600;
            background: #2271b1;
            color: white;
        }

        .search-btn:hover {
            background-color: #0056b3;
        }

        .dots-btn {
            background-color: #3b82f6;
            border: none;
            color: white;
            font-size: 20px;
            width: 35px;
            height: 35px;
            border-radius: 6px;
            cursor: pointer;
            position: relative;
        }

        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 120px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            z-index: 1;
            border-radius: 6px;
            overflow: hidden;
        }

        .dropdown-menu a {
            padding: 10px 15px;
            display: block;
            text-decoration: none;
            color: #333;
            font-size: 14px;
        }

        .dropdown-menu a:hover {
            background-color: #f1f1f1;
        }
	input.error, select.error, textarea.error {
    		border: 1px solid red;
	}
	label.error {
    		color: red;
    		font-size: 13px;
	}