body.sales-order-view button.select-btn,body.sales-order-view button.close-btn {
	font-family: var(--brown-font-bold);
	font-size: 10px;
    padding: 5px 20px;
    border: 1px solid var(--color__dark-grey);
    display: inline-block;
    border-radius: 30px;
    vertical-align: text-top;
    color: var(--color__white);
    box-shadow : none;
}

body.sales-order-view button.close-btn {
    color: var(--color__dark-grey);
    background-color: var(--color__white);
}

body.sales-order-view button.select-btn {
    background: var(--color__dark-grey);
}

body.sales-order-view button.select-btn:hover,body.sales-order-view button.close-btn:hover {
	background: var(--color__yellow);
    border-color: var(--color__yellow);
    color: var(--color__dark-grey);
    cursor: pointer;
}

/* In your CSS file or <style> section */
.modal-inner-wrap {
    min-height: 300px; /* Adjust as needed */
}

.modal-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
}

.modal-footer {
    /* Ensure footer is always at the bottom */
}

body.sales-order-view .order-actions-select {
    border-radius: 50px;
    border: 1px solid var(--color__dark-grey);
    font-size: 1rem;
    width: auto;
    text-transform: uppercase;
    padding: 10px 25px;
    /*height: auto;
    background: none;*/
}

body.sales-order-view th.col.action {
    text-align: center;
}

body.sales-order-view .option-container input, body.sales-order-view .option-container select {
    font-family: var(--redhat-font-regular);
    background-color: var(--color__translucent-grey);
    border: 0;
    border-radius: 6px;
    margin: 2px 0px;
    font-size: 14px;
    height: 3rem;
    width: 100%;
    padding: 0 9px;
}

body.sales-order-view .option-container {
    margin-bottom: 1rem;
    font-family: var(--redhat-font-semibold);
}

body.sales-order-view .option-container label {
}

body.sales-order-view footer.modal-footer {
    padding: 10px;
}

/*body.sales-order-view .modal-footer .select-btn,body.sales-order-view .modal-footer .close-btn {
    box-shadow: none;
    background: none;
}*/

body.sales-order-view footer.modal-footer {
    display: flex;
    justify-content: space-between;
}

body.sales-order-view .mz-modal-popup {
    font-family: var(--brown-font-regular);
}

body.sales-order-view .mz-modal-popup ul.edit-confirmation-list li {
    display: flex;
    align-items: center;
    margin: 10px;
}

body.sales-order-view .mz-modal-popup ul.edit-confirmation-list li h4, ul.edit-confirmation-list li span {
    flex: 0.5;
    margin: 0;
}

body.sales-order-view .modal-popup h1.modal-title {
    border-bottom: unset;
}

body.sales-order-view .modal-inner-wrap {
    border:1px solid #D0D6DC;
    border-radius: 10px;
}
body.sales-order-view .modal-popup{
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.icon-container {
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
}

body.sales-order-view .mz-modal-popup h2 {
  text-align: center ;
  color:var(--color__vivid-blue);
}

body.sales-order-view .order-actions-select option{
    font-size:12px;
}
#validationMessages {
    display: none; /* Hidden by default */
    max-height: 200px; /* Adjust as needed */
    overflow-y: auto; /* Enable vertical scrolling */
    color: red; /* Optional: color for the error message */
    padding: 10px; /* Optional: padding for better appearance */
    border: 1px solid red; /* Optional: border for visibility */
    background-color: #f8d7da; /* Optional: background color for better visibility */
}

.canceled-status {
    color: red; /* Optional: color for the error message */
    padding: 10px; /* Optional: padding for better appearance */
    border: 1px solid red; /* Optional: border for visibility */
    background-color: #f8d7da; /* Optional: background color for better visibility */
}
