
/* BASE STYLES */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #f5f7fa;
}


/* Full-page overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 50, 50, 0.9); /* Darker gray for better contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Ensure it's above everything */
    display: none; /* Initially hidden */
}

/* Centered container */
.spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Bigger Spinner */
.spinner {
    border: 12px solid #f3f3f3;
    border-top: 12px solid #f68121;
    border-radius: 50%;
    width: 250px; /* Bigger */
    height: 250px; /* Bigger */
    animation: spin 1s linear infinite;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo Inside the Spinner */
.loading-logo {
    width: 200px; /* Adjust logo size */
    height: auto;
    position: absolute;
}

/* Large "Loading Report..." text */
.loading-text {
    margin-top: 20px;
    font-size: 40px; /* Larger Text */
    font-weight: bold;
    color: #f68121;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Ensure only dots move and not the text */
.dots::after {
    content: "...";
    animation: dotsAnimation 1.5s infinite steps(3);
    display: inline-block;
    width: 1em; /* Prevents text from shifting */
    text-align: left;
}

@keyframes dotsAnimation {
    0% { content: "."; }
    33% { content: ".."; }
    66% { content: "..."; }
    100% { content: ""; }
}

/* Spinner Rotation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

  

.card-header.bg-info {
    background-color: #f8f8f8 !important; /* Example custom orange */
}


#save-button.btn-success {
    background-color: #f68121 !important;
    border-color: #f68121 !important;
}





