*{

   margin: 0;
   
}
/* This is the "Area" where everything stays */
.slider-container {
    position: relative;
    width: 500px;  /* Fixed Width */
    height: 400px; /* Fixed Height */  
    margin: 100px auto;
    overflow: hidden;
    border: 5px solid white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background-color: #fff; /* fallback */ 
}

.slide {
    display: none; /* This prevents vertical stacking */
    width: 100%;
    height: 100%; 
    object-fit: cover;
}

/* Only the active image is visible */
.active {
    display: block;
    
}

/* Buttons styling */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
}

.prev { left: 0; }
.next { right: 0; }

.nav-btn:hover {
    background: rgba(0,0,0,0.8);
}

table {
  margin: 20px auto;        /* centers the table */
  border-collapse: collapse; /* cleaner borders */
  width: 60%;               /* optional: control width */
  text-align: center;       /* center text inside cells */
}

table th {
  background-color: #f0edca; /* dark header background */
  color: #d65f5f;               /* white text for header */
  padding: 10px;
}

table td {
  padding: 8px;
  border: 1px solid #d76b6b;    /* light borders */
}

/* Optional: striped rows */
table tr:nth-child(even) {
  background-color: #d6dcea;
}
/* ===== Responsive ===== */

@media(max-width:768px){

    .footer-container{
        flex-direction: column;
        text-align: center;
    }

    .footer-menu{
        justify-content: center;
    }
}

@media (max-width: 600px) {
  .site-header {
    flex-direction: column;   /* stack vertically */
    gap: 10px;
  }

  .header-center {
    text-align: center;
  }

  .header-left img,
  .header-right img {
    width: 50px; /* slightly smaller logos */
  }
}