body {
	background-color: #f4f7f9;
}

button {
    position: relative;
    /* display: flex; */
    /* align-items: center; */
    gap: 10px;
}

/* Optional: make the spinner smaller */
.spinner .lds-ring {
    width: 20px;
    height: 20px;
}

.spinner .lds-ring div {
    width: 16px;
    height: 16px;
    margin: 2px;
    border-width: 3px;
}

.lds-ring {
    /* change color here */
    color: black
}

.lds-ring,
.lds-ring div {
  box-sizing: border-box;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid currentColor;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: currentColor transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.login {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f4f7f9;
}

.login-container {
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.login-title {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #333;
}

.g_id_signin {
    display: inline-block;
}

.report-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Headings */
.report-page h1 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
}

.report-page h4 {
    color: #34495e;
    margin-bottom: 10px;
}

/* Section cards */
.report-page #csv_upload,
.report-page #date_range {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
    width: 90%;
    max-width: 500px;
}

/* Form elements */
.report-page label {
    display: block;
    margin: 10px 0 5px;
    font-weight: 500;
}

.report-page input[type="file"],
.report-page select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

/* Scoped button styles */
.report-page button {
    background-color: #3498db;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.report-page button:hover {
    background-color: #2980b9;
}

.report-page #logout {
    margin-top: 30px;
    background-color: #e74c3c;
}

.report-page #logout:hover {
    background-color: #c0392b;
}

.report-page .card-container {
    display: flex;
    flex-wrap: wrap; /* allows stacking on smaller screens */
    gap: 20px; /* spacing between cards */
    justify-content: center;
    margin-bottom: 30px;
}

.report-page #csv_upload,
.report-page #date_range {
    flex: 1 1 300px; /* responsive sizing */
    max-width: 400px;
}
