.customSettingField{
    font-weight:500; 
    width:150px;
}

.customSettingValue{
    font-weight:500; 
}


.customTextLeft{
    text-align:left;
}

.customFloatLeft{
    float:left;
}

.customUpdateRecordFontSize{
    font-size: 1.4rem;
}

.swalUpdateRecord{
    width:60% !important;
}

.swalAddRecord{
    width:60% !important;
}

/* Custom CSS for the loader */
.custom-loader {
    border: 4px solid #333; /* Dark gray border */
    border-top: 4px solid #acacac; /* Dark gray top border */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin .5s linear infinite; /* Spin animation */
    margin: 4px; /* Add margin for spacing */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}