/* Global CSS variables */
:root {
  --spacing-company: 3rem;
  --font-weight: 400;
  --border-radius: 0;
}

/* Typography */
h2,
h3,
hgroup > :last-child {
  font-weight: 200;
}

small {
  color: var(--muted-color);
}

/* Header */
.hero {
  background-color: #394046;
  background-image: url("images/rendangHead.jpg");
  background-position: center;
  background-size: cover;
}

header {
  padding: var(--spacing-company) 0;
}

header hgroup > :last-child {
  color: var(--h3-color);
}

header hgroup {
  margin-bottom: var(--spacing-company);
}

/* Nav */
summary[role="link"].contrast:is([aria-current],:hover,:active,:focus) {
  background-color: transparent;
  color: var(--contrast-hover);
}

/* Main */
@media (min-width: 992px) {
  main .grid {
      grid-column-gap: var(--spacing-company);
      grid-template-columns: auto 25%;
  }
}

form.grid {
  grid-row-gap: 0;
}

/* Aside nav */
aside img {
  margin-bottom: 0.25rem;
}

aside p {
  margin-bottom: var(--spacing-company);
  line-height: 1.25;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
}

.responsive-table th, .responsive-table td {
  text-align: left;
  padding: 8px;
}

.responsive-table th {
  background-color: #f2f2f2;
}
.responsive-table td {
  border-bottom: 4px solid #ddd; /* Adjusts border thickness and color */
  padding: 8px;
  border-left: none;
  border-right: none;
}

.responsive-table .price-column {
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 767px) {
  /* Global CSS variables */
  :root {
  --spacing-company: 3rem;
  --font-weight: 400;
  --border-radius: 0;
  }

/* Typography */
h2,
h3,
hgroup > :last-child {
  font-weight: 200;
}

small {
  color: var(--muted-color);
}

/* Header */
.hero {
  background-color: #394046;
  background-image: url("images/rendangHead.jpg");
  background-position: center;
  background-size: cover;
}

header {
  padding: var(--spacing-company) 0;
}

header hgroup > :last-child {
  color: var(--h3-color);
}

header hgroup {
  margin-bottom: var(--spacing-company);
}

/* Nav */
summary[role="link"].contrast:is([aria-current],:hover,:active,:focus) {
  background-color: transparent;
  color: var(--contrast-hover);
}

/* Main */
@media (min-width: 992px) {
  main .grid {
      grid-column-gap: var(--spacing-company);
      grid-template-columns: auto 25%;
  }
}

form.grid {
  grid-row-gap: 0;
}

/* Aside nav */
aside img {
  margin-bottom: 0.25rem;
}

aside p {
  margin-bottom: var(--spacing-company);
  line-height: 1.25;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
}

.responsive-table th, .responsive-table td {
  padding: 8px;
  display: block; /* Makes each cell stack vertically */
  width: 100%;
  /* border: 1px solid #ddd; */
  text-align: left;
  padding: 8px;
}

.responsive-table th {
  background-color: #f2f2f2;
  font-weight: bold;
}

.responsive-table .price-column {
  white-space: nowrap;
}
.responsive-table img {
  width: 100%;
  height: auto;
}


/* Mobile */
@media (max-width: 767px) {
  .responsive-table {
      width: 100%;
      border-collapse: collapse;
  }

  .responsive-table th, .responsive-table td {
      padding: 8px;
      display: block; /* Makes each cell stack vertically */
      width: 100%;
      border: none; /* Removes borders */
  }

  .responsive-table th {
      font-weight: bold;
      display: none;
  }
  .responsive-table td {
    padding: 8px;
    border: none; /* Removes borders */
    /* border-bottom: 4px solid #ddd; */
    border-bottom: none;
  }
 /* Added in attempt to remove vertical borders */
  .responsive-table tr {
    border-bottom: 4px solid black;
    border-top: 4px solid black;
    border-collapse: collapse;
    border-right: none;
    border-left: none;
}
  .responsive-table img {
      width: 100%;
      height: auto;
  }
  .responsive-table .item-column{
    font-size: x-large;
    color: black;
    
  }
  .responsive-table .price-column{
    font-size: large;
    color: black 
  }
 
 }

 
  /* If you have specific styles for the first, second, and third rows, you can add them here */
}
