﻿/*css for input readonly/disabled*/
/*datetime property can use string input to show value*/
/*can refer CRUDCurrecyConversion*/
/*Empty cache and hard reload when update css*/

/*#region Input*/
input:read-only, input:disabled {
    background-color: #f5f5f5 !important;
    pointer-events: auto !important;
    color: black !important;
    cursor: not-allowed !important;
}

    input:read-only:hover, input:disabled:hover {
        border-color: lightgray !important;
    }
    input:read-only:focus, input:disabled:focus {
        border-color: lightgray !important;
        box-shadow: none !important;
    }

input.ant-select-selection-search-input {
    background-color: unset !important;
    cursor: unset !important;
}
/*#endregion */

.ant-select-disabled span {
    color: black !important;
}

.ant-collapse-header {
    height: 56px !important;
}

/*#region table scrollbar color*/
.ant-table-content::-webkit-scrollbar {
    width: 8px; /* Adjust width as needed */
    height: 8px; /* Adjust height for horizontal scrollbar */
}

.ant-table-content::-webkit-scrollbar-track {
    background-color: #f0f0f0; /* Color of the scrollbar track */
    border-radius: 4px; /* Optional: rounded corners for the track */
}

.ant-table-content::-webkit-scrollbar-thumb {
    background-color: #e3e3e3; /* Color of the scrollbar thumb (the draggable part) */
    border-radius: 4px; /* Optional: rounded corners for the thumb */
}
/*#endregion */
