﻿.spinner {
    display: none;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top-color: #fff; /* Change the spinner color to white */
    border-radius: 50%;
    width: 20px; /* Increase the width to 20px */
    height: 20px; /* Increase the height to 20px */
    animation: spin 0.8s linear infinite;
    margin-left: 5px;
}

.loading-text {
    display: none;
    margin-left: 5px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btnSaving .spinner {
    display: inline-block;
}

.btnSaving .loading-text {
    display: inline-block;
}
