.pagination ul {
        -webkit-border-radius: 0px !important;
        -moz-border-radius: 0px !important;
        border-radius: 0px !important;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
}

.pagination ul>li:first-child>a,
.pagination ul>li:first-child>span {
        -webkit-border-bottom-left-radius: 0px;
        border-bottom-left-radius: 0px;
        -webkit-border-top-left-radius: 0px;
        border-top-left-radius: 0px;
        -moz-border-radius-bottomleft: 0px;
        -moz-border-radius-topleft: 0px;
}

.pagination ul>li:last-child>a,
.pagination ul>li:last-child>span {
        -webkit-border-top-right-radius: 0px;
        border-top-right-radius: 0px;
        -webkit-border-bottom-right-radius: 0px;
        border-bottom-right-radius: 0px;
        -moz-border-radius-topright: 0px;
        -moz-border-radius-bottomright: 0px;
}

.pagination {
        text-align: center
}

.pagination>a,
.pagination>strong {
        display: inline-block;
        line-height: 20px;
        text-align: center;
        margin-right: -5px;
        padding: 4px 12px;
        line-height: 20px;
        text-decoration: none;
        background-color: #fff;
        border: 1px solid #ddd;
}

.pagination>strong {
        border-left-width: 1px;
        border-right-width: 1px !important;
}

.pagination strong {
        padding: 10px 20px;
}

.pagination>a,
.pagination>strong {
        padding: 10px 20px;
}

.accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
        transform: scale(.7);
}

.accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

.custom_app tr td {
        padding: 8px !important;
}

.pagination ul {
        -webkit-border-radius: 0px !important;
        -moz-border-radius: 0px !important;
        border-radius: 0px !important;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
}

.pagination ul>li:first-child>a,
.pagination ul>li:first-child>span {
        -webkit-border-bottom-left-radius: 0px;
        border-bottom-left-radius: 0px;
        -webkit-border-top-left-radius: 0px;
        border-top-left-radius: 0px;
        -moz-border-radius-bottomleft: 0px;
        -moz-border-radius-topleft: 0px;
}

.pagination ul>li:last-child>a,
.pagination ul>li:last-child>span {
        -webkit-border-top-right-radius: 0px;
        border-top-right-radius: 0px;
        -webkit-border-bottom-right-radius: 0px;
        border-bottom-right-radius: 0px;
        -moz-border-radius-topright: 0px;
        -moz-border-radius-bottomright: 0px;
}

.pagination {
        text-align: center
}

.pagination>a,
.pagination>strong {
        display: inline-block;
        line-height: 20px;
        text-align: center;
        margin-right: -5px;
        padding: 4px 12px;
        line-height: 20px;
        text-decoration: none;
        background-color: #fff;
        border: 1px solid #ddd;
}

.pagination>strong {
        border-left-width: 1px;
        border-right-width: 1px !important;
}

.error {
        color: red;
        margin: 10px;
}

.form-control:disabled,
.form-control[readonly] {
        background: white;
}

#error_split_data {
        padding: 5px;
}

#ui-datepicker-div {
        z-index: 1000 !important
}

.othServTextCurrency {
        padding: 0.175rem 0.75rem;
        font-size: 0.8rem;
}


.card {
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        min-height: 110px;
    }

.card-header {
        background-color: #f8f9fa;
        border-bottom: 1px solid #ddd;
        font-weight: bold;
    }

.card-body {
        padding: 20px;
    }

 .card-text {
        color: #333;
    }

.validation-error {
  color: red;
  margin-top: 8px !important;
}

.loader {
    border: 16px solid #f3f3f3; /* Light gray */
    border-top: 16px solid #db3434; /* Blue */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
    position: fixed; /* Stay in place */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000; /* Make sure it's above other content */
}
      
/* Animation keyframes */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
      
