
        .edit-link {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 32px;
            height: 32px;
            border-radius: 10%;
            background-color: #AC3B61;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .edit-link:hover {
            background-color: #123C69;
            transform: scale(1.1);
        }

        .edit-link:hover .edit-icon {
            fill: #ffffff;
        }

        .edit-icon {
            /* Using an inline SVG for the edit icon (pencil) IconsFolder*/
            fill: #4a90e2;
            width: 16px;
            height: 16px;
            transition: fill 0.3s ease;
        }

        .edit-icon:hover {
            fill: #ffffff;
        }

        .select-column {
            text-align: center;
        }

  