a:link {
    text-decoration: none;
}

td.flash {
    position: relative;
    padding: 0px;
}

input.flash {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    outline: none;
    border: 0px;
    padding: 2px;
}

input {
    border-radius: 0px;
}

.my-fade-1 {
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidebar */
}

div#load_screen {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    position: fixed;
    z-index: 10;
    top: 0;
    width: 100%;
    height: 1600px;
}

div#load_screen>div#loading {
    width: 120px;
    height: 24px;
    margin: 300px auto;
}

.tooku-charts {
    background-color: #00315c;
    background-image: url("../images/denim3.jpg");
}

[v-cloak] {
    display: none;
}

.my-bg-blue-1 {
    background: #CFE2F3;
}

.my-bg-blue-2 {
    background: #F0F6FB;
}

.the-bg-color {
    background: '#18408B';
}

.the-color {
    color: '#18408B';
}

.bg-main2 {
    background: #F5FFFF;
}

.bg-main {
    background: #e9f5f8;
}

.content {
    padding: 16px;
}
.bg-myBlue-1{
    background:#2E86C1;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */

.sticky {
    position: fixed;
    width: 100%
}


/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */

.sticky+.content {
    padding-top: 102px;
}

.styled-radio {
    width: 20px;
    /* Adjust size */
    height: 20px;
    /* Adjust size */
    appearance: none;
    /* Remove default styles */
    border: 2px solid #007bff;
    /* Border color */
    border-radius: 50%;
    /* Circular shape */
    background-color: white;
    /* Default background color */
    position: relative;
    cursor: pointer;
}

.styled-radio:checked {
    background-color: #007bff;
    /* Checked color */
    border-color: #0056b3;
    /* Checked border color */
}

.styled-radio:checked::after {
    content: '';
    /* Creates the inner dot */
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    background-color: #007bff;
    /* Dot color */
    border-radius: 50%;
    /* Inner circle */
}

.modal-extra-wide {
    max-width: 90%;
    width: 90%;
}

@media (min-width: 992px) {
    .modal-extra-wide {
        max-width: 80%;
        width: 80%;
    }
}

.procurement-details {
    background-color: #f8f9fa;
    border-left: 3px solid #6c757d;
}

.procurement-details label {
    font-size: 0.75rem;
}

.procurement-details p {
    margin-bottom: 0.5rem;
    word-break: break-word;
}

.font-weight-semibold {
    font-weight: 500;
}

.bg-light-dark {
    background-color: #6c757d;
    /* Light gray (lighter than bg-dark) */
}

#pdf-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
}

#pdf-container {
    width: 90%;
    height: 85%;
    margin: 2% auto;
    background: #2c3e50;
    padding: 15px;
    border-radius: 5px;
    position: relative;
}

#pdf-toolbar {
    background: #34495e;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    border-radius: 5px 5px 0 0;
}

#pdf-viewer {
    background: white;
    width: 100%;
    height: calc(100% - 50px);
    overflow: auto;
}

.pdf-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.pdf-btn:hover {
    background: #2980b9;
}

.pdf-btn:disabled {
    background: #7f8c8d;
    cursor: not-allowed;
}

#page-count {
    color: white;
    font-family: Arial;
    margin: 0 10px;
}

#close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

#zoom-controls {
    position: absolute;
    right: 20px;
    top: 60px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px;
    border-radius: 4px;
}

.zoom-btn {
    background: #3498db;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    margin: 2px;
}

.pdf-icon {
    font-size: 48px;
    cursor: pointer;
    margin: 20px;
    color: #e74c3c;
}

.o_arrow_button {
    position: relative;
    padding: 0.5rem 2rem 0.5rem 1rem;
    /* more padding on right for arrow tip */
    /*background-color: #6c757d;*/
    color: #fff;
    border: none;
    font-weight: 500;
    overflow: hidden;
    transition: background-color 0.3s;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0% 100%);
}

.o_arrow_button:hover {
    background-color: #e0e0e0;
    color: white;
}

.o_arrow_button_current {
    background-color: #495057;
    /* darker for current */
    font-weight: 600;
}