/* MD3 Custom Styles - Application Specific */

/* Projects Table status colors */
#projectsTable .Yellow {
  background-color: #FFF3E0;
  color: #E65100;
}

#projectsTable .Red {
  background-color: #FFEBEE;
  color: #C62828;
}

/* Details badge spacing */
details > a.badge {
  margin-bottom: 5px;
}

/* Pulse animation for loading states */
.btn.pulse {
  animation: pulse-md3 1.5s ease-in-out infinite;
}

@keyframes pulse-md3 {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
