/* Font Size Controls
--------------------------------------------------------- */
.font-standard {
  font-size: 14px;
}

.font-large {
  font-size: 16px;
}

.font-extra-large {
  font-size: 18px;
}

/* Background Color Controls
--------------------------------------------------------- */
.bg-white {
  background-color: #ffffff;
  color: #333333;
}

.bg-black {
  background-color: #000000;
  color: #ffffff;
}

.bg-yellow {
  background-color: #ffffcc;
  color: #333333;
}

.bg-blue {
  background-color: #e6f3ff;
  color: #333333;
}

/* Animation for notifications
--------------------------------------------------------- */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.notification-success {
  background-color: #28a745;
}

.notification-info {
  background-color: #007bff;
}

.notification-warning {
  background-color: #ffc107;
  color: #333;
}

.notification-error {
  background-color: #dc3545;
}