/* Container holding both columns side by side */
.banner-container {
  display: flex;
  justify-content: center;
  gap: 40px; /* space between columns */
  padding: 20px;
}

/* Individual column */
.banner-column {
  display: flex;
  justify-content: center; /* center the banner-content inside the column */
  width: 300px; /* fix width to match iframe width */
}

/* Wrapper for iframe + button */
.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* center iframe and button horizontally */
}

/* Iframe styling */
.banner-content iframe {
  width: 100%;
  border: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Refresh button styling */
.refresh-button {
  margin-top: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.refresh-button svg {
  width: 100%;
  height: 100%;
}