/* static/css/styles.css */

.custom-link:hover {
    text-decoration: underline;
}

.table-hover tr:hover {
    background-color: #f7fafc;
    /* Tailwind's gray-100 */
}

.btn-custom {
    background-color: #2b6be4;
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
  }
  

/* Loading Overlay */
.loading-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  z-index: 1000; /* High z-index to overlay everything */
  justify-content: center;
  align-items: center;
}

/* Spinner */
.spinner {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@-moz-keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.green-input {
  background-color: #248068;
  color: white;
}

