.disabled-links {
    pointer-events: none;
    background-color: #9e9ea2;
}

.custom-swal-width {
    width: 600px; /* Change this value to your desired width */
    padding: 25px
}
.custom-swal-icon {
    font-size: 10px; /* Change this value to make the icon smaller */
    width: 30px; /* Adjust width */
    height: 30px; /* Adjust height */
    line-height: 20px; /* Align the icon vertically */
    margin-top: 10px;
}

.focused {
    outline: 2px solid #007BFF!important; /* Change the color as needed */
    outline-offset: 2px!important;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5)!important; /* Optional */
}
/* Focus styles for Select2 */
/* More specific styles for the Select2 container when it has focus */
.select2-container.select2-container--bootstrap5.select2-container--focus .select2-selection {
    outline: 2px solid #007BFF!important; /* Change the color as needed */
    outline-offset: 2px!important;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5)!important; /* Optional */
}

/* Additional styles for Select2 dropdown when it's opened */
.select2-container.select2-container--bootstrap5.select2-container--open .select2-selection {
    outline: 2px solid #007BFF!important; /* Change the color as needed */
    outline-offset: 2px!important;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5)!important; /* Optional */
}


.table-amounts td {
    font-family: 'Chivo Mono';
    color: black!important;
    font-weight: 300;
}

.table-amounts-td {
    font-family: 'Chivo Mono';
    color: black!important;
    font-weight: 300;
}

/* Option 1: Simple border color feedback */
.save-success {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
    transition: all 0.3s ease;
}

.save-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
    transition: all 0.3s ease;
}

/* Option 2: Simple toast notification */
.simple-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.simple-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.simple-toast.toast-error {
    background: #dc3545;
}

.simple-toast i {
    margin-right: 8px;
}

/* Option 3: Small checkmark that appears next to field */
.field-wrapper {
    position: relative;
}

.save-checkmark {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.save-checkmark.show {
    opacity: 1;
}