/* body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  padding: 40px;
  margin: 0;
} */

h1 {
  text-align: center;
  color: #2a2a2a;
}

.brochure-list {
  max-width: 800px;
  margin: 40px auto;    
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.brochure-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

/* .brochure-download-btn {
  background-color: #009688;
  color: black;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
} */

/* .brochure-download-btn:hover:hover {
  background-color: #00796b;
} */
/* .btn-group {
  display: flex;
  gap: 10px;
} */

/* .brochure-view-btn, .brochure-download-btn {
  background-color: #009688;
  color: black;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 14px;
} */

/* .brochure-view-btn {
  background-color: #2196f3;
}

.brochure-view-btn:hover {
  background-color: #1976d2;
}

.brochure-download-btn:hover {
  background-color: #00796b;
} */
/* ========== PDF Modal Styles ========== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.modal-content {
  position: relative;
  width: 80%;
  height: 90%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

#pdfFrame {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0 0 10px 10px;
}

/* .brochure-close-btn {
  position: absolute;
  top: 8px;
  right: 15px;
  font-size: 26px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.brochure-close-btn:hover {
  color: #e91e63;
} */
