﻿/* Tables Buttons for All Pages */
body {
    font-family: var(--font-primary);
    font-weight: 500;
}
.table-cell .btn-separator {
    padding: 1px;
}

.table-cell .btn {
    //display: flex;
    align-items: center;
    justify-content: center;
    width: 35px; /* Adjust width for icon size */
    height: 35px; /* Adjust height for icon size */
    padding: 4px;
    border-radius: 50%;
    //color: white;
    text-decoration: none;
    font-size: 16px; /* Icon size */
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.table-cell .btn-primary {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    font-size: 12px;
    width: 30px;
    height: 30px;
}

    .table-cell .btn-primary:hover {
        background-color: #007bff;
        color: white;
        border-color: #007bff;
    }


.table-cell .btn-secondary {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    font-size: 12px;
    width: 30px;
    height: 30px;
}

    .table-cell .btn-secondary:hover {
        background-color: #6c757d;
        color: white;
        border-color: #6c757d;
    }


.table-cell .btn-success {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    font-size: 12px;
    width: 30px;
    height: 30px;
}


    .table-cell .btn-success:hover {
        background-color: #28a745;
        color: white;
        border-color: #28a745;
    }


.table-cell .btn-info {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    font-size: 12px;
    width: 30px;
    height: 30px;
}

    .table-cell .btn-info:hover {
        background-color: #17a2b8;
        color: black;
        border-color: #17a2b8;
    }


.table-cell .btn-warning {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    font-size: 12px;
    width: 30px;
    height: 30px;
}


    .table-cell .btn-warning:hover {
        background-color: #ffc107;
        color: black;
        border-color: #ffc107;
    }


.table-cell .btn-danger {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    font-size: 12px;
    width: 30px;
    height: 30px;
}

    .table-cell .btn-danger:hover {
        background-color: #dc3545;
        color: white;
        border-color: #dc3545;
    }


.table-cell .btn-dark {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    font-size: 12px;
    width: 30px;
    height: 30px;
}

    .table-cell .btn-dark:hover {
        background-color: #343a40;
        color: white;
        border-color: #343a40;
    }
