body {
    font-family: 'Roboto', Arial, sans-serif;
}

.pink-header {
    background-color: pink;
    color: #000;
}
.company-header {
    background-color: white;
    color: navy;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid navy;
    font-family: Arial, Helvetica, sans-serif;
}
.company-header img {
    height: 60px;
}
.vendor-details {
    text-align: right;
}
.navbar {
    background-color: #30448c;
    height: 45px;
    font-family: Arial, Helvetica, sans-serif;
}
.navbar a {
    color: white !important;
}
.ui-datepicker-header .ui-icon {
    width: 0; 
    height: 0; 
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid navy;
}



/*loader 1 starts */
.progress {
    width:120px;
    height:20px;
    border-radius: 20px;
    background:
        repeating-linear-gradient(135deg,#f03355 0 10px,#ffa516 0 20px) 0/0%   no-repeat,
        repeating-linear-gradient(135deg,#ddd    0 10px,#eee    0 20px) 0/100%;
    animation:p3 2s infinite;
}
@keyframes p3 {
    100% {background-size:100%}
}
/*loader 1 ends */


/* Loader 2 starts */
.dots-loader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60px;
    height: 20px;
}

/* Individual Dots */
.dots-loader div {
    width: 12px;
    height: 12px;
    background-color: #3498db;
    border-radius: 50%;
    animation: bounce 1.2s infinite ease-in-out;
}

/* Animation Delay for Dots */
.dots-loader div:nth-child(1) {
    animation-delay: -0.4s;
}
.dots-loader div:nth-child(2) {
    animation-delay: -0.2s;
}
.dots-loader div:nth-child(3) {
    animation-delay: 0s;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}
/*loader  2 ends*/



/* loader 3 bg freeze starts */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark semi-transparent overlay */
    backdrop-filter: blur(8px); /* Blur effect for the background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top of everything */
    pointer-events: none; /* Prevent background interaction */
}

/* Dot Loader */
.dots-loader {
    display: flex;
    justify-content: space-between;
    width: 80px;
    height: 20px;
    position: relative;
}

/* Individual Dots */
.dots-loader .dot {
    width: 12px;
    height: 12px;
    background-color: #00d4ff;
    border-radius: 50%;
    animation: bounce 1.2s infinite ease-in-out;
}

/* Animation for Dots */
.dots-loader .dot:nth-child(1) {
    animation-delay: 0s;
}
.dots-loader .dot:nth-child(2) {
    animation-delay: 0.2s;
}
.dots-loader .dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Prevent Background Scrolling */
body.freeze {
    overflow: hidden;
}
/* loader 3 bg freeze ends */




/* some headers starts*/

.sky-blue-header {
    background-color: #87ceeb; /* Light Sky Blue */
    color: #000; /* Black for contrast */
}
.mint-green-header {
    background-color: #98ff98; /* Pale Green */
    color: #004d00; /* Dark Green for contrast */
}
.sunset-orange-header {
    background-color: #ff4500; /* Orange Red */
    color: white; /* White for contrast */
}
.royal-purple-header {
    background-color: #6a5acd; /* Slate Blue */
    color: white; /* White for contrast */
}
.steel-grey-header {
    background-color: #708090; /* Slate Gray */
    color: white; /* White for contrast */
}
.golden-yellow-header {
    background-color: #ffd700; /* Gold */
    color: #4d4d00; /* Dark Yellow for contrast */
}
.teal-header {
    background-color: #008080; /* Teal */
    color: white; /* White for contrast */
}
/* Pastel Header Colors */

/* Pastel Pink Header */
.pastel-pink-header {
    background-color: #ffd1dc; /* Light Pastel Pink */
    color: #000; /* Black for contrast */
}

/* Pastel Blue Header */
.pastel-blue-header {
    background-color: #aec6cf; /* Light Pastel Blue */
    color: #000; /* Black for contrast */
}

/* Pastel Green Header */
.pastel-green-header {
    background-color: #cfe8d5; /* Light Pastel Green */
    color: #004d40; /* Dark Green for contrast */
}

/* Pastel Lavender Header */
.pastel-lavender-header {
    background-color: #d4c5f9; /* Light Lavender */
    color: #4a3b8e; /* Dark Purple for contrast */
}

/* Pastel Yellow Header */
.pastel-yellow-header {
    background-color: #fffacd; /* Light Pastel Yellow */
    color: #665d1e; /* Darker Yellow/Brown for contrast */
}

/* Pastel Peach Header */
.pastel-peach-header {
    background-color: #ffdab9; /* Light Pastel Peach */
    color: #8b4513; /* Saddle Brown for contrast */
}

/* Pastel Mint Header */
.pastel-mint-header {
    background-color: #e0f7e4; /* Light Mint Green */
    color: #00695c; /* Teal for contrast */
}

/* Pastel Gray Header */
.pastel-gray-header {
    background-color: #f5f5f5; /* Very Light Gray */
    color: #333; /* Dark Gray for contrast */
}
/* some headers ends*/


.file-warning {
    color: #5c4827 !important;/* Bootstrap text-danger color */ 
    font-weight: bold;
    /* background-color: #f9d6d5 !important; /* Light red background for emphasis */
    background-color: #ffd96f !important;
    padding: 10px;
    border-left: 5px solid #5c4827 !important; /* Highlight with a red border */
    border-radius: 4px;
    margin-top: 10px;
    display: inline-block;
    font-size: 14px;
    font-family: 'Roboto', Arial, sans-serif;
}

.file-warning i {
    margin-right: 5px;
}




.inp.doc_type {
    padding: 5px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fefefe;
    color: #333;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.inp.doc_type:hover {
    border-color: #007bff;
}

.inp.doc_type:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.5);
}


.card-header-ppx {
    cursor: pointer;
    user-select: none;
}
.toggle-icon {
    transition: transform 0.3s ease;
}
.collapsed .toggle-icon {
    transform: rotate(180deg);
}
/* for OTP error */
.otp-error {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    color: #d9534f; /* Bootstrap red */
    font-size: 14px;
}

.otp-error i {
    background-color: #d9534f;
    color: white;
    border-radius: 50%;
    padding: 4px;
    margin-right: 6px;
    font-size: 10px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* for OTP error */