/*zamren colors*/

.green-light-1 {
    color: #04c85f;
}

.green-light-2 {
    color: #04af54;
}

.green-og {
    color: #039447;
}

.green-dark-1 {
    color: #037d3c;
}

.green-dark-2 {
    color: #026430;
}

.basic-link {
    color: #28a745;
}

.intl-tel-input .selected-flag {
    z-index: 4;
}

.select2-container .select2-selection--single {
    height: 40px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    height: 40px;
}

.auth-card {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.8);
}

.hide {
    display: none;
}

.pointer {
    cursor: pointer;
}

.hover-underlined:hover {
    text-decoration: underline;
!important;
}

.hover-text-color-link:hover {
    color: #4183c4;
!important;
}

.hover-text-bold:hover {
    font-weight: bold;
}

.hover-bg-light:hover {
    background-color: #f8f9fa;!important;
}

.hover-bg-dark-grey:hover {
    background-color: #f4f4f4;!important;
}

.bold {
    font-weight: bold;
}

.text-italic {
    font-style: italic;
}

.text-underline {
    text-decoration: underline;
}

.large-textarea {
    width: 100%;
    height: 150px; /* Adjust height as needed */
}

.chat-box {
    max-height: 35vh;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1rem;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column-reverse;
}

.chat-message {
    margin-bottom: 1rem;
    border: 1px solid #b8b8b8;
    /*padding: 0.8rem;*/
}

.chat-step-name {
    font-size: x-small;
    border: 1px solid lightgray;
    color: GrayText;
}

.chat-step-action {
    font-size: x-small;
}

.chat-step-action-success {
    font-size: x-small;
    border: 1px solid darkgreen;
    color: darkgreen;
}

.chat-step-action-rejected {
    font-size: x-small;
    border: 1px solid darkred;
    color: darkred;
}

.chat-step-action-sent-back {
    font-size: x-small;
    border: 1px solid darkorange;
    color: darkorange;
}

.chat-footer {
    display: flex;
    align-items: center;
    border-top: 1px solid #dee2e6;
    padding-top: 0.5rem;
    margin-top: 1rem;
}

.chat-footer input[type="text"] {
    flex-grow: 1;
    margin-right: 0.5rem;
}

.chat-most-recent {
    background: white;
}

.chat-step-attachment {
    font-size: x-small;
    border: 1px solid darkblue;
    color: darkblue;
}

.font-x-small {
    font-size: x-small;
}

.font-small {
    font-size: small;
}

.font-medium {
    font-size: medium;
}

.font-large {
    font-size: large;
}

.font-x-large {
    font-size: x-large;
}

.font-xx-large {
    font-size: xx-large;
}

.font-xxx-large {
    font-size: xxx-large;
}


/*badge pulse*/
.badge-pulse {
    overflow: visible;
    position: relative;
}

.badge-pulse:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    transition: opacity .3s, transform .3s;
    animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: -1;
}

@keyframes pulse-animation {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0;
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

.text-grey {
    color: #6c757d;
}

.text-grey-light {
    color: #adb5bd;
}

.text-grey-dark {
    color: #343a40;
}

.text-grey-darker {
    color: #212529;
}

.text-grey-lighter {
    color: #f8f9fa;
}

.procurement-file-preview-iframe {
    width: 100% !important;
    height: 80vh !important;
}

.purchase-order-card
{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    background-color: #ffffff;
}

.purchase-order-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
    transition: all 0.3s ease;
}