/* newly added */
.error-message{
    color: red;
    font-size: 18px;
    margin-bottom: 10px;
}
.btn-disabled {
    background-color: lightslategray !important;
    cursor: not-allowed !important;
    border: none;
}

.spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: white !important;
}
/* Reset default DataTables color issue */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: none !important;
    background: transparent !important;
    margin: 0 4px;
    border-radius: 6px;
}

/* Hover */
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
}

/* Active (CURRENT PAGE) */
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:focus {
    background: var(--color-primary) !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: 6px;
}

/* Force inner text color (handles inherit issue) */
.dataTables_wrapper .dataTables_paginate .paginate_button.current * {
    color: #fff !important;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
  .toast-success {
        width: 700px !important;
    }
    .toast-error {
        width : 700px !important;
    }
    .toast-info {
        width : 700px !important;
    }
    .toast-warning {
        width : 700px !important;
    }
    /* Change the font size of the main message */
    .toast-message {
        font-size: 16px !important; /* Adjust the pixel value as needed */
    }

    /* Change the font size of the toast title */
    .toast-title {
        font-size: 18px !important; /* Adjust the pixel value as needed */
        font-weight: bold;
    }
/* end */

.success-icon {
    width: 52px;
    height: 52px;
    background-color: #dff5ef;
    color: #2dbf9b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bulletin_table_info{
    display: none;
}
.dataTables_info{
    display: none;
}
.dataTables_length{
    margin-bottom :5px;
}


.cursor_remove{
    cursor :not-allowed;
}

/* changed accordian button to a tag thus to remove underline from text */
.custom-accordion .accordion-button {
    text-decoration: none !important;
}





