.button-icon i{
    background-color: transparent;
    border:  none;
    box-shadow: none;
    color: var(--text-gray) !important;
    margin-left: 5px;
  }
  
  .primary-button {
    padding: 0.375rem 1.75rem;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #68AC45;
    border: 1px solid #68AC45;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.primary-button:hover {
    color: #fff;
    background-color: #558A37;
}

.primary-button:active {
    background-color: #46732E;
}

.primary-button:focus {
    outline: none;
}

.primary-button.full-width {
    width: 100%;
}

.secondary-button {
    padding: 0.375rem 1.75rem;
    font-size: 14px;
    font-weight: 400;
    color: #68AC45;
    background-color: #fff;
    border: 1px solid #68AC45;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.secondary-button:hover {
    background-color: #68AC45;
    color: #fff;
}

.secondary-button:active {
    background-color: #558A37;
    border-color: #558A37;
}

.secondary-button:focus {
    outline: none;
}

.tertiary-button {
    padding: 0.375rem 1.75rem;
    font-size: 14px;
    font-weight: 400;
    color: #68AC45;
    background-color: transparent;
    border: 0px solid #68AC45;
    border-radius: 4px;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.tertiary-button:hover {
    color: #fff;
    background-color: #68AC45;
    border-color: #68AC45;
}

.tertiary-button:active {
    color: #fff;
    background-color: #558A37;
    border-color: #558A37;
}

.tertiary-button:focus {
    outline: none;
}

.primary-icon {
    padding: 10px;
    max-height: 20px;
}
.primary-icon svg{

    max-width: 20px;
}

td .badge.active {
    background-color: rgba(88, 178, 50, 0.1) !important;
    color: var(--green);
}

td .badge {
    font-size: 14px;
    font-weight: normal;
}

td .badge.not-active {
    background-color: rgba(234, 111, 78, 0.1) !important;
    color: var(--red);
}