/* CSS for Serial Modal */
.serials-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.serials-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 400px;
  max-height: 80%;
  overflow-y: auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.serials-modal h2 {
  margin-top: 0;
  font-size: 18px;
}

.serials-modal ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0;
}

.serials-modal li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.serials-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 15px;
}

.serials-modal-footer button {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.serials-modal-footer .close-serials-modal {
  background: #ccc;
}

.serials-modal-footer .download-serials-modal {
  background: #059669;
  color: #fff;
}