/* Custom styles for SMSAssist */
body {
    background-color: #f8f9fa;
  }
  
  .navbar {
    background-color: #0d6efd; /* Primary color for branding */
  }
  
  .header-container {
    background-color: #198754; /* Success color for welcoming tone */
    color: white;
    padding: 2rem;
    border-radius: 10px;
  }
  
  .section-container {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 10px;
  }
  
  .section-container .title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  .bg-accessibility {
    background-color: #ffdf7e; /* Custom color for accessibility */
    border-left: 5px solid #ffbf00;
  }
  
  .modal-header {
    background-color: #198754; /* Success color for positive actions */
    color: white;
  }
  
  .modal-content {
    border-radius: 10px;
  }
  
  .btn-close {
    background-color: white;
    border-radius: 50%;
  }
  
  .form-control, .btn-primary {
    border-radius: 8px;
  }
  
  .form-label {
    color: #495057;
  }
  
  .form-text {
    font-size: 0.85rem;
    color: #6c757d;
  }
  
  /* Accessibility focus styles */
  :focus {
    outline: 2px solid #ffbf00; /* High contrast focus color */
    box-shadow: 0 0 5px rgba(255, 191, 0, 0.8);
  }
  