.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa; /* Light gray background */
    z-index: 9999;
  }
  
  .loading-spinner {
    position: absolute;
    top: 47%;
    left: 47%;
    transform: translate(-53%, -53%);
    margin: auto; /* Center the spinner horizontally and vertically */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 6px solid #f39c12; /* Dark orange border color */
    border-top-color: transparent; /* Transparent top border */
    animation: spin 1s linear infinite;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 0, 0, 0.1); /* Soft shadow effect */
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  