body { background-color: #f8f9fa; }
.navbar, .sidebar { background-color: #011f4b; }
.btn-primary { background-color: rgba(56, 191, 32, 1); border-color: rgba(56, 191, 32, 1); }
/* Add this to your main CSS */
@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in {
  animation: slideInRight 0.5s ease-in-out;
}

