body
{
    background: #f4f7fe
}

.btn:focus, .btn:active:focus, .btn.active:focus,
.btn.focus, .btn:active.focus, .btn.active.focus
{
    outline: none !important;
    box-shadow: none;
}
button:hover
{
    filter:brightness(130%);
}
button:active{
    filter:brightness(90%)
}
.table-div
{
    min-width: 100%;
    max-width: 100%;
    overflow-x: auto;
    font-size: 12px;
}
#fetch_btn, #export_btn, #reset_btn, #show_more
{
    background: #4318FF;
    border-radius: 70px;
    text-transform: capitalize;
    border: none !important;
    outline: none !important;
    float: right;
    margin: 0 20px 0 0;
}

#show_more
{
    display: none;
    margin: 30px 0;
}

input, select
{
    border-radius: 10px !important;
}
.query_results
{
    display: none;
}

#dataTable
{
    -moz-border-radius: 3px !important;
    -webkit-border-radius: 3px !important;
    border-radius: 3px !important;
    border: none !important;
}

#dataTable thead
{
    -moz-border-radius: 3px !important;
    -webkit-border-radius: 3px !important;
    border-radius: 10px;
    background: #4318FF;
    color: #f4f7fe;
}

#dataTable th
{
    border: none !important;
    padding: 10px 5px;
    box-sizing: border-box;
}

#dataTable td
{
    padding: 5px 5px;
    box-sizing: border-box;
    white-space: nowrap;
}

#loading-bar-container
{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background-color: #ccc;
}

#loading-bar
{
    height: 100%;
    width: 0;
    background-color: #4caf50;
    transition: width 0.3s ease;
}