/* style_main.css */

/* Global styles */
body {
    font-family: 'Noto Sans Thai', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    margin: 0;
    padding: 0;
  }
  
  /* Card styles */
  .card {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: none;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
  }
  
  .card-header {
    background-color: #343a40;
    color: #ffffff;
    padding: 15px 20px;
    font-size: 1rem;
    text-align: center;
  }
  
  .card-body {
    padding: 20px;
  }
  
  /* Carousel styles */
  .carousel-inner {
    border-radius: 8px 8px 0 0;
  }
  
  .carousel-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
  }
  
  /* Card content */
  .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .card-text {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  
  /* Modern Carousel Controls (optional) */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    filter: invert(1);
  }
  
  /* Table styles for DataTables or normal tables */
  .table {
    margin-bottom: 0;
  }
  
  .table th,
  .table td {
    vertical-align: middle;
    text-align: center;
  }
  
  /* Responsive adjustments */
  @media (max-width: 767.98px) {
    .card {
      margin-bottom: 20px;
    }
  }
  