/* Welcome Header */
.welcome-header {
    font-size: 24px;
    font-weight: bold;
    color: #007BFF;
    margin-bottom: 20px;
    text-align: center;
  }
  
  /* Responsive Table */
  .custom-table {
    width: 90%;
    max-width: 600px;
    margin: 1px auto;
    border-collapse: separate;
    border-spacing: 0;
    /* border-radius: 10px; */
    overflow: hidden;
    font-size: 18px;
    text-align: left;
  }
  
  
  
  .custom-table th,
  .custom-table td {
    padding: 8px;
    border: 2px solid #007BFF; /* Default Blue Border */
  }
  
  .custom-table th {
    background-color: black;
    color: #007BFF;
  }
  
  /* Responsive for small screens */
  @media (max-width: 600px) {
    .custom-table {
      width: 100%;
      font-size: 16px;
    }
  }
  
  @media (max-width: 576px) {
    h3 {
      font-size: 20px;
    }
    .custom-table {
      font-size: 14px;
    }
    button.btn {
      font-size: 14px;
      padding: 10px;
    }
    
    /* Change table border to Purple on mobile */
    .custom-table th,
    .custom-table td {
      border: 2px solid purple !important;
    }
  }
  
  /* Optional: Smooth Button Styles */
  button.btn {
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
  }
  button.btn:hover {
    transform: scale(1.05);
  }
  