/* Base Container */
.pins-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

/* Banner */
.pins-banner img {
  width: 80%;
  height: auto;
  
  margin-bottom: 30px;
}

/* Image Row */
.pins-image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.pins-image img {
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: block;
  max-width: 100%;
  height: auto;
}

/* Description */
.pins-description, .pins-note {
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 16px;
  text-align: center;
}

/* Table Layout */
.pins-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pins-table-header,
.pins-table-row {
  display: flex;
  flex-wrap: wrap;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pins-table-header {
  background-color: #eee;
  font-weight: bold;
  font-family: Verdana, sans-serif;
}

.pins-table-row {
  background-color: #fff;
  font-family: Arial, sans-serif;
}

.pins-col {
  padding: 15px;
  border-right: 1px solid #ccc;
  flex: 1;
  min-width: 150px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pins-col:last-child {
  border-right: none;
}

/* Form Button */
.pins-col form {
  margin: 0;
}

.pins-col input[type="submit"] {
  background-color: #669999;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.pins-col input[type="submit"]:hover {
  background-color: #557f7f;
}

/* Responsive */
@media (max-width: 768px) {
  .pins-image-row {
    flex-direction: column;
    align-items: center;
  }

  .pins-table-header,
  .pins-table-row {
    flex-direction: column;
  }

  .pins-col {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }

  .pins-col:last-child {
    border-bottom: none;
  }
}
