/* ===============================
   GUJARATI LOGIN PORTAL CSS
   =============================== */

/* Gujarati Font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Gujarati:wght@400;600;700&display=swap');

/* ===========================================
    Admin login css 
=========================================== */
.guj-login-overlay {
    position: fixed;
    inset: 0;
    background: #f6f6f6;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.4s ease-out;
    z-index: 999999;
}

/* Main Login Box */
.guj-login-wrapper {
    width: 100%;
    max-width: 550px;
    min-height: 520px;
    background: #ffffff;
    padding: 50px 50px;
    border-radius: 22px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.18);
    font-family: 'Noto Sans Gujarati', sans-serif;
    animation: slideUp 0.45s ease-out;
}

/* Heading */
.guj-heading {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 45px;
    color: #222;
}

/* Labels */
.guj-login-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

/* Input Fields */
.guj-login-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cecece;
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 28px;
    font-family: 'Noto Sans Gujarati', sans-serif;
    transition: all 0.2s ease;
}

.guj-login-form input:focus {
    border-color: #0c4b4a;
    box-shadow: 0 0 5px rgba(12,75,74,0.25);
    outline: none;
}

/* Password Field Wrapper */
.guj-pass-field {
    position: relative;
}

/* Eye Icon */
.toggle-icon {
    position: absolute;
    right: 16px;
    top: 35%;
    transform: translateY(-50%);
    font-size: 19px;
    color: #555;
    cursor: pointer;
    padding: 3px;
    transition: 0.2s;
}

.toggle-icon:hover {
    color: #000;
}

/* Login Button */
.guj-login-btn {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 12px;
    background: #0c4b4a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: 0.25s ease;
    font-family: 'Noto Sans Gujarati', sans-serif;
}

.guj-login-btn:hover {
    background: #083938;
    transform: translateY(-2px);
}

/* Popup Enter Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(60px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

/* Mobile Responsive */
@media(max-width: 560px) {

    .guj-login-wrapper {
        padding: 35px 30px;
        max-width: 92%;
        min-height: 480px;
    }

    .guj-heading {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .guj-login-form input {
        font-size: 15px;
    }

    .toggle-icon {
        right: 12px;
    }

    .guj-login-btn {
        font-size: 16px;
    }
}

/* Extra Small Screens */
@media(max-width: 390px) {
    .guj-login-wrapper {
        padding: 30px 25px;
        min-height: 450px;
    }
}
/* Success message box */
.guj-success {
    background: #d4f8d2;
    color: #0e6c0e;
    border: 1px solid #8ddf8a;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Circle tick animation */
.success-circle {
    width: 24px;
    height: 24px;
    border: 3px solid #0e6c0e;
    border-radius: 50%;
    position: relative;
    animation: pop 0.3s ease-out forwards;
}

.success-circle::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 6px;
    width: 6px;
    height: 12px;
    border-right: 3px solid #0e6c0e;
    border-bottom: 3px solid #0e6c0e;
    transform: rotate(45deg);
    opacity: 0;
    animation: tick 0.4s ease-out 0.3s forwards;
}

@keyframes pop {
    0% { transform: scale(0.2); }
    100% { transform: scale(1); }
}

@keyframes tick {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Error message box */
.guj-error {
    background: #ffe1e1;
    color: #b10000;
    border: 1px solid #ff9b9b;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 600;
}






/* ===========================================
    Venodr Dashboard
=========================================== */
.vendor-dashbord-left {
    position: fixed;
    top: 0;
    left: 0;
    width: 270px;
    height: 100vh;
    transition: all 0.5s;
    z-index: 999999;
    background-color: #fff;
    border-right: 1px solid #D1D5DB;
    padding: 30px;
}
.vendor-dashbord-right {
    margin-left: 270px;
    padding: 40px 30px 50px 30px;
}
.vendor-dashbord {
    background-color: #FAFAFA;
    position: relative;
}
.vendor-dashbord-menu {
    height: 100%;
}
.vendor-dashbord-logo {
    margin-bottom: 36px;
    text-align: center;
}
.vendor-dashbord-menu-content {
    height: calc(100% - 60px);
    overflow: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
}
.vendor-dashbord-menu-content ul {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    height: -webkit-fill-available;
    margin-left: 0px !important;
    padding-left: 0px !important;
    list-style: none;

}
.vendor-dashbord-menu-content ul li a img {
    filter: brightness(0);
    transition: all 0.5s;
}
.vendor-dashbord-menu-content ul li.active {
    background-color: #203738;
}
.vendor-dashbord-menu-content ul li a {
    padding: 9px 0 9px  16px;
    display: flex;
    align-items: center;
    column-gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #1A141F;
    line-height: 23px;
    text-decoration: none;
}
.vendor-dashbord-menu-content ul li.active a {
    color: #fff;
}
.vendor-dashbord-menu-content ul li.active a img {
    filter: brightness(50);
}
.vendor-dashbord-menu-content ul li:last-child {
    margin-top: auto;
}
.vendor-heading {
    display: flex;
    align-items: center;
    column-gap: 30px;
    justify-content: space-between;
    position: relative;
}
.vendor-heading .title h2 {
    margin-bottom: 0;
    font-size: 32px;
}
.vendor-heading .title p {
    margin-bottom: 0;
}
.vendor-heding-end {
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.vendor-author {
    display: flex;
    align-items: center;
    column-gap: 12px;
}
.vendor-author h4 {
    font-size: 16px;
    margin-bottom: 0;
}
.vendor-notification {
    position: relative;
}
.vendor-notification span {
    height: 14px;
    width: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    border-radius: 100%;
    color: #fff;
    font-size: 12px;
    position: absolute;
    top: 0;
    right: 0;
    font-weight: 500;
}




.vendor-search {
    position: relative;
    width: 350px;
}
.vendor-search input[type="search"] {
    padding: 9px 16px;
    font-size: 14px;
    color: #1A141F;
    background-color: #E9E9EB;
    border: none;
    width: 100%;
}
.vendor-search input[type="search"]::placeholder {
    color: #1A141F;
}
.vendor-search button {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
}
.vendor-dashbord-box {
    background-color: #E3DACC;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    column-gap: 20px;
    justify-content: space-between;
    flex: 1;
    position: relative;
}
.vendor-dashbord-box h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}
.vendor-dashbord-box h3 {
    margin-bottom: 0;
    font-size: 36px;
    font-weight: 500;
    margin-top: 0px;
}
.vendor-dashbord-box a {
    padding-left: 15px;
    padding-right: 10px;
}
.vendor-dashbord-box-outer {
    display: flex;
    column-gap: 20px;
    margin-bottom: 30px;
}
.pasentage-box {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    column-gap: 3px;
    background-color: #EAFDEE;
    border-radius: 200px;
    padding: 4px 8px;
}
.pasentage-box p {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 500;
    color: #08631C;
}
.chart-tooltip {
    position: absolute;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.15);
    pointer-events: none;
    opacity: 0;
    transition: all 0.2s ease;
    font-size: 13px;
}
.tooltip-value {
    font-weight: bold;
}
.tooltip-change {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    font-size: 12px;
}
.vendor-darhbord-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(12, 1fr);
}
.vendor-darhbord-grid-item {
    padding: 24px;
    border-radius: 8px;
    background-color: #fff;
    grid-column: span 7;
    border: 1px solid #EAEAEA;
    position: relative;
}
.vendor-darhbord-grid-item h4{
    font-size: 20px;
    margin-bottom: 12px;
}
.vendor-darhbord-grid-item:nth-child(2) {
    grid-column: span 5;
}
.chart-value {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, -0%);
    font-size: 28px;
    font-weight: 500;
    color: #111;
    text-align: center;
    margin-top: -41px;
    margin-bottom: 30px;
}
.status-bar {
    margin-top: 30px;
    font-size: 14px;
}
.status-bar > div {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.status-bar > div:last-child{
    border-bottom: 0;
}
.dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}
.accepted { background: #203738; }
.pending { background: #CDDFDE; }
.rejected { background: #64817F; }
span#acceptedVal ,span#pendingVal, span#rejectedVal{
    color: #475F5D;
    font-weight: 500;
}
.status-chart-top {
    width: 200px;
    margin: auto;
    margin-top: -30px;
    position: relative;
}
.vendor-darhbord-grid-item:nth-child(3), .vendor-darhbord-grid-item:nth-child(4){
     grid-column: span 6;
}
.best-product-table table {
    width: 100%;
}
.best-product-table table tr {
    border-bottom: 1px solid #F0F1F3;
}
.best-product-table table tbody tr:last-child{
    border-bottom: 0;
}
.best-product-table table tr th{
    font-size: 16px;
    color: #3F3F46;
    font-weight: 500;
}
.best-product-table table tr th, .best-product-table table tr td {
    padding: 12px 0;
    text-align: center;
}
.best-product-table table tr th:first-child, .best-product-table table tr td:first-child{
    text-align: left;
}
.best-product-table table tr td:nth-child(2){
    font-size: 14px;
    color: #203738;
    font-weight: 500;
}
.best-product-table table tr td:nth-child(3){
    color: #006736;
}
.vendor-product-list{
    width: 100%;
}
.vendor-product-list .vendor-search{
    width: 650px;
    margin-right: auto;
}
.vendor-heading-two {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 15px;
    margin-bottom: 18px;
}
.vendor-heading-two h4 {
    margin-bottom: 0;
}
.vendor-heading-two p {
    margin-bottom: 0;
    margin-top: 0px;
}
.vendor-heading-two .secondary-btn-two {
    background-color: #203738;
    color: #fff;
    border: 1px solid #203738;
    line-height: 20px;
    padding: 11px 25px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    position: revert;
    text-decoration: none;
}
.vendor-heading-two .secondary-btn-two:hover{
    color: #203738;
    background-color: #fff;
    border: 1px solid #203738;
}
.vendor-fillter-outer {
    border-top: 1px solid #D1D5DB;
    padding-top: 18px;
}
.vendor-filter-bar form {
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.search-product-box {
    display: flex;
    align-items: center;
    column-gap: 10px;
    background-color: #fff;
    box-shadow: 0px 0.71px 1.43px 0px #0000000D;
    border: 1px solid #D1D5DB;
    padding: 5px 10px;
    width: 470px;
}
.search-product-box select#bp-filter-type{
    border: none;
    border-radius: 0;
    font-size: 12px;
    padding: 7px 0;
}
.search-product-box select#bp-filter-type:focus-visible{
    outline: 0;
}
.search-product-box .search-box {
    position: relative;
        width: 100%;
}
.search-product-box .search-box input[type="text"] {
    border: none;
    padding: 7px 15px;
    font-size: 12px;
    border-left: 1px solid #D1D5DB;
    width: 100%;
}
.search-product-box .search-box input[type="text"] {
    outline: none !important;
    box-shadow: none !important;
}
.search-product-box .search-box button {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
}
.vendor-filter-bar form select#vendor_status_filter {
    font-size: 12px;
    border: 1px solid #D1D5DB;
    padding: 13px 10px;
    width: 200px;
}
.vendor-filter-bar form select#vendor_status_filter:focus-visible{
    outline: 0;
}
.vendor-filter-bar {
    margin-bottom: 18px;
}
.vendor-darhbord-table {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    box-shadow: 0px 0.71px 1.43px 0px #0000000D;
    overflow-x: scroll;
    scrollbar-width: thin;
}
table.table-wrapper{
width: 100%;
}


/* Logout Popup */
.logout-confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: fadeIn 0.2s ease-in-out;
}

.logout-confirm-box {
    background: #fff;
    padding: 30px;
    width: 360px;
    text-align: center;
    border-radius: 12px;
    font-family: 'Noto Sans Gujarati', sans-serif;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: popupScale 0.25s ease-out;
}

.logout-confirm-box h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

.logout-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.logout-yes,
.logout-no {
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.logout-yes {
    background: #e53935;
    color: #fff;
}

.logout-no {
    background: #9e9e9e;
    color: #fff;
}

@keyframes popupScale {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.vendor-clean-table {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.vendor-clean-table thead th {
    background: #f3f4f6;
    padding: 14px 18px;
    text-align: left;
    font-size: 15px;
    color: #333;
    font-weight: 600;
    border-bottom: 1px solid #e5e7eb;
}

.vendor-clean-table tbody td {
    padding: 16px 18px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #333;
}

.vendor-phone {
    color: #666;
    margin: 2px 0 0;
}

.status-badge {
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.status-badge.active {
    background: #d4f8df;
    color: #0b8a25;
}

.status-badge.inactive {
    background: #ffe5e5;
    color: #d40000;
}

.bill-btn {
    color: #0057ff;
    text-decoration: underline;
    cursor: pointer;
}

.vendor-name-box strong {
    font-size: 16px;
}

/* ********
   *******---------- Vendor Modal ----------*****
***** */

.bp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: bpFadeIn 0.2s ease-out;
}

.bp-modal {
    background: #ffffff;
    border-radius: 18px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    overflow: hidden;
    font-family: 'Noto Sans Gujarati', sans-serif;
    animation: bpSlideUp 0.25s ease-out;
        width: 520px;
    margin: 80px auto;
}

.bp-modal-header {
    padding: 18px 24px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bp-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.bp-modal-close {
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.bp-modal-body {
    padding: 20px 24px 10px;
}

.bp-form-group {
    margin-bottom: 15px;
}

.bp-form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
}

.bp-form-group input,
.bp-form-group textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d6d6d6;
    padding: 10px 12px;
    font-size: 14px;
}

.bp-modal-footer {
    padding: 14px 24px 18px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-top: 1px solid #f1f1f1;
}

.bp-btn {
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.bp-btn-primary {
    background: #113e3c;
    color: #fff;
}

.bp-btn-primary:hover {
    background: #0b2f2d;
}

.bp-btn-secondary {
    background: #f1f1f1;
    color: #333;
}

.bp-btn-secondary:hover {
    background: #e1e1e1;
}

.bp-form-message {
    margin-top: 5px;
    font-size: 13px;
    min-height: 18px;
}

.bp-form-message.error {
    color: #c53030;
}

.bp-form-message.success {
    color: #1c7c3c;
}

/* Small action buttons in table */
.bp-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bp-action-buttons button,
.bp-action-buttons a {
    font-size: 13px;
    background: transparent;
    border: none;
    color: #113e3c;
    cursor: pointer;
    text-align: left;
    padding: 0;
}

/* Animations */
@keyframes bpFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes bpSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

/* Mobile */
@media (max-width: 480px) {
    .bp-modal {
        max-width: 92%;
    }
}
/* OVERLAY */
.bp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: none;
    z-index: 99999;
    animation: modalFade .2s ease-in-out;
}

/* MODAL BOX */
.bp-modal-new {
    background: #fff;
    width: 520px;
    margin: 80px auto;
    border-radius: 20px;
    overflow: hidden;
    animation: modalPop .25s ease-in-out;
}

/* HEADER */
.bp-modal-header {
    padding: 22px 28px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bp-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.bp-modal-close {
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

/* BODY */
.bp-modal-body {
    padding: 25px 28px;
}

.bp-form-group {
    margin-bottom: 18px;
}

.bp-form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
    color: #333;
}

.bp-form-group input,
.bp-form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
}

.bp-form-group input:focus,
.bp-form-group select:focus {
    border-color: #0a534d;
}

/* FOOTER BUTTONS */
.bp-modal-footer {
    padding: 16px 28px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.bp-btn {
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    border: none;
}

.bp-btn-primary {
    background: #0a534d;
    color: white;
}

.bp-btn-secondary {
    background: #e5e5e5;
}

/* ERROR/SUCCESS MESSAGE */
.bp-form-message.error {
    color: red;
    margin-top: 8px;
}

.bp-form-message.success {
    color: green;
    margin-top: 8px;
}

/* ANIMATIONS */
@keyframes modalFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalPop {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.hisab-wrapper {
    padding: 20px 0px;
}

.bp-add-btn {
    background: #0a6836;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 16px;
    cursor: pointer;
}

.bp-table-container {
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 10px;
}


.bp-hisab-table {
    width: 100%;
    border-collapse: collapse;
}

.bp-hisab-table thead th {
    background: #f3f3f3;
    padding: 12px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.bp-hisab-table tbody td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.bp-row-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.bp-radio-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.bp-remove {
    color: red;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}

.bp-total-box {
    width: 260px;
    padding: 20px;
    background: #f6faf6;
    border: 1px solid #c8e6c9;
    border-radius: 10px;
    margin-top: 20px;
}

.bp-total-box p {
    font-size: 16px;
    margin: 5px 0;
}

.net-bal {
    margin-top: 10px;
    font-size: 18px;
}
.hisab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* vendor mangment */

.vendor-clean-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 15px;
}

.vendor-clean-table th {
    background: #f8f8f8;
    padding: 12px;
    font-weight: 600;
    border-bottom: 2px solid #e3e3e3;
}

.vendor-clean-table td {
    padding: 12px;
    border-bottom: 1px solid #f1f1f1;
}

.vendor-clean-table tr:hover {
    background: #fafafa;
}

/* BILL BUTTON */
.bill-btn {
    color: #fff;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 14px;
    background-color: #203738;
    color: #fff;
    border: 1px solid #203738;
    line-height: 20px;
    position: revert;
        color: #fff !important;
    text-decoration: none;

}

/* ACTION ICONS */
.action-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.edit-icon, 
.delete-icon {
    cursor: pointer;
    font-size: 18px;
}

.edit-icon:hover {
    color: #f1c40f;
}

.delete-icon:hover {
    color: #e74c3c;
}

/* ********
   *******---------- Vendor mangment modal css  ----------*****
***** */
 /* Dark Background Overlay */
.bp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(3px);
    animation: fadeIn 0.25s ease-out;
}

/* Modal Box */
.bp-modal {
    width: 520px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    animation: slideUp 0.3s ease-out;
}

/* Header */
.bp-modal-header {
    padding: 22px 28px;
    border-bottom: 1px solid #ececec;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bp-modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

/* Close Button */
.bp-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 5px 10px;
    color: #444;
    transition: 0.2s;
}

.bp-modal-close:hover {
    color: #000;
    transform: rotate(90deg);
}

/* Body */
.bp-modal-body {
    padding: 24px 28px 0 28px;
}

/* Form Groups */
.bp-form-group {
    margin-bottom: 20px;
}

.bp-form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #555;
}

/* Input */
.bp-form-group input,
.bp-form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    background: #fafafa;
    transition: 0.25s;
}

.bp-form-group input:focus,
.bp-form-group textarea:focus {
    outline: none;
    background: #fff;
    border-color: #1a8f6a;
    box-shadow: 0 0 0 3px rgba(26, 143, 106, 0.15);
}

/* Textarea */
.bp-form-group textarea {
    min-height: 85px;
    resize: vertical;
}

/* Footer Buttons */
.bp-modal-footer {
    padding: 20px 28px;
    border-top: 1px solid #ececec;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Buttons */
.bp-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    border: none;
    font-weight: 600;
}

.bp-btn-primary {
    background: #176b4f;
    color: #fff;
}

.bp-btn-primary:hover {
    background: #0f4e39;
}

.bp-btn-secondary {
    background: #e8e8e8;
    color: #444;
}

.bp-btn-secondary:hover {
    background: #d6d6d6;
}

/* Message Text */
.bp-form-message {
    margin-top: 5px;
    font-size: 14px;
    color: red;
    min-height: 18px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


#bp-delete-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.bp-delete-confirm-box {
    background: #fff;
    padding: 25px;
    width: 350px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
    animation: fadeIn 0.2s ease;
    /* transform: translate(-50%, -50%); */

}

.bp-delete-confirm-box h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.bp-delete-confirm-box p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #444;
}

.confirm-buttons {
    display: flex;
    justify-content: space-between;
}

.confirm-buttons button {
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
}

#bp-delete-cancel {
    background: #e5e5e5;
}

#bp-delete-ok {
    background: #ff3b30;
    color: #fff;
}

@keyframes fadeIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


/* =============================
   NEW BILL MODAL – PREMIUM UI
   ============================= */
#bp-bill-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(3px);
}
#bp-baki-modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(3px);
}
.bp-modal-new {
    width: 480px;
    background: #fff;
    border-radius: 18px;
    padding: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    animation: fadeInScale .25s ease-out;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.93); }
    to   { opacity: 1; transform: scale(1); }
}

/* Header */
.bp-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bp-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.bp-modal-close {
    background: transparent;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #555;
}
.bp-modal-close:hover {
    color: #000;
}

/* Body */
.bp-modal-body {
    padding: 20px 24px;
}

.bp-form-group {
    margin-bottom: 18px;
}

.bp-form-group label {
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.bp-form-group input,
.bp-form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: #fafafa;
}

.bp-form-group input:focus,
.bp-form-group select:focus {
    border-color: #1f6f5f;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(31,111,95,0.15);
}

.bp-form-message {
    font-size: 14px;
    margin-top: 5px;
}
.bp-form-message.error {
    color: #b91c1c;
}
.bp-form-message.success {
    color: #166534;
}

/* Footer */
.bp-modal-footer {
    padding: 15px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.bp-btn {
    padding: 10px 22px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
}

.bp-btn-secondary {
    background: #e5e5e5;
    color: #333;
}

.bp-btn-secondary:hover {
    background: #d5d5d5;
}

.bp-btn-primary {
    background: #0a5c4c;
    color: #fff;
}

.bp-btn-primary:hover {
    background: #084c3f;
}
   
#print-area {
    width: 148mm;
    height: 210mm;
    padding: 10mm;
    border: 2px solid #000;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
}

/* HEADER */
.bill-header {
    text-align: center;
    border-bottom: 2px solid #000;
    padding-bottom: 4px;
    margin-bottom: 6px;
}

.bill-title {
    font-size: 20px;
    font-weight: bold;
}

.sub-title {
    font-weight: bold;
    font-size: 14px;
}

.small-text {
    font-size: 12px;
}

/* TABLE STYLE */
.bill-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 5px;
}

.bill-table th,
.bill-table td {
    border: 1px solid #000;
    padding: 4px;
    font-size: 12px;
}

/* TOTAL BOX */
.total-box {
    margin-top: 10px;
    font-weight: bold;
    border: 1px solid #000;
    padding: 4px;
    text-align: right;
}

/* FOOTER */
.bill-footer {
    position: absolute;
    bottom: 10mm;
    left: 10mm;
    right: 10mm;
    border-top: 1px dashed #000;
    padding-top: 6px;
    font-size: 12px;
}

.signature {
    text-align: right;
    font-weight: bold;
}
#bp-vendor-table-body td,
#bp-vendor-table-body th,
#bp-vendor-table-body strong,
#bp-vendor-table-body a,
#bp-vendor-table-body span {
    font-family: "Baloo Bhai 2", sans-serif !important;
    font-size: 18px;
    font-size: 17px;
    color: #1a1a1a;
}

#bp-vendor-table-body .bill-btn {
    font-family: "Baloo Bhai 2", sans-serif !important;
    font-size: 16px;
}

.action-icons img {
    width: 20px;
    opacity: 0.8;
}
.baki-input{
    width: 95%;
}
.manage-filter{
    display: flex;
    align-items: center;
    gap: 45px;
}    
#bp-open-remaining-print{
    background-color: #203738;
    color: #fff;
    border: 1px solid #203738;
    line-height: 20px;
    padding: 11px 25px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    position: revert;
    text-decoration: none;
}   