
.icon-red {
    width: 30px; /* Icon container size */
    height: 30px;
    background-color: transparent; /* Transparent background */
    border-radius: 7px; /* Rounded corners */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; /* Pointer on hover */
    position: relative; /* Required for pseudo-element */
    overflow: hidden; /* Prevent pseudo-element from overflowing */
    transition: transform 0.3s ease; /* Smooth hover scaling for the container */
}

.icon-red::before {
    content: ''; /* Pseudo-element for the background */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent; /* Transparent by default */
    border-radius: 7px; /* Match container */
    z-index: 0; /* Place behind the icon */
    transition: background-color 0.3s ease, opacity 0.3s ease; /* Smooth hover effect */
}

.icon-red:hover::before {
    background-color: #ec5555; /* Light blue background on hover */
    opacity: 0.5; /* Apply hover opacity to the background */
}

.icon-red i {
    font-size: 16px; /* Icon size */
    color: #ec5555; /* Default icon color */
    position: relative; /* Ensure it stays above the pseudo-element */
    z-index: 1; /* Keep icon above pseudo-element */
    transition: transform 0.3s ease; /* Smooth animation for icon scaling */
}

.icon-blue {
    width: 30px; /* Icon container size */
    height: 30px;
    background-color: transparent; /* Transparent background */
    border-radius: 7px; /* Rounded corners */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; /* Pointer on hover */
    position: relative; /* Required for pseudo-element */
    overflow: hidden; /* Prevent pseudo-element from overflowing */
    transition: transform 0.3s ease; /* Smooth hover scaling for the container */
}

.icon-blue::before {
    content: ''; /* Pseudo-element for the background */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent; /* Transparent by default */
    border-radius: 7px; /* Match container */
    z-index: 0; /* Place behind the icon */
    transition: background-color 0.3s ease, opacity 0.3s ease; /* Smooth hover effect */
}

.icon-blue:hover::before {
    background-color: #0ea5e9; /* Light blue background on hover */
    opacity: 0.5; /* Apply hover opacity to the background */
}

.icon-blue i {
    font-size: 16px; /* Icon size */
    color: #0ea5e9; /* Default icon color */
    position: relative; /* Ensure it stays above the pseudo-element */
    z-index: 1; /* Keep icon above pseudo-element */
    transition: transform 0.3s ease; /* Smooth animation for icon scaling */
}


.icon-purple {
    width: 30px; /* Icon container size */
    height: 30px;
    background-color: transparent; /* Transparent background */
    border-radius: 7px; /* Rounded corners */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; /* Pointer on hover */
    position: relative; /* Required for pseudo-element */
    overflow: hidden; /* Prevent pseudo-element from overflowing */
    transition: transform 0.3s ease; /* Smooth hover scaling for the container */
}

.icon-purple::before {
    content: ''; /* Pseudo-element for the background */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent; /* Transparent by default */
    border-radius: 7px; /* Match container */
    z-index: 0; /* Place behind the icon */
    transition: background-color 0.3s ease, opacity 0.3s ease; /* Smooth hover effect */
}

.icon-purple:hover::before {
    background-color: #6658dd; /* Light blue background on hover */
    opacity: 0.5; /* Apply hover opacity to the background */
}

.icon-purple i {
    font-size: 16px; /* Icon size */
    color: #6658dd; /* Default icon color */
    position: relative; /* Ensure it stays above the pseudo-element */
    z-index: 1; /* Keep icon above pseudo-element */
    transition: transform 0.3s ease; /* Smooth animation for icon scaling */
}
.no-border {
    border: none;
    height: 20px;
    background-color: transparent;
    outline: none;
    width: 100%;
    padding-left: 0; /* Remove padding on the left */
    margin-left: 0;  /* Remove margin on the left */
    text-align: left; /* Ensure text aligns properly */
}

.no-border:hover {
    color: #6658dd;
}

.no-border:focus {
    color: #6658dd;
}
.last-divider {
    display: none;
}
.footable td, 
    .footable th {
    vertical-align: middle;
    padding: 10px;
}
@media (max-width: 576px) {
    .last-divider {
        display: block;
        border: 1px solid #ccc;
        margin: 10px 0;
    }
}
@media (max-width: 768px) {
    .pagination li.footable-page-arrow:first-child, 
    .pagination li.footable-page-arrow:last-child {
        display: none;
    }
}
