/**
 * Reports SCSS
 *
 * Styles for PDF viewer with security measures
 */
/* Hide download, print and open file buttons in PDF.js viewer */
#download,
#print,
#openFile,
#secondaryDownload,
#secondaryPrint,
#secondaryOpenFile,
button[title=Download],
button[title=Print],
button[title="Open File"],
a[title=Download],
a[title=Print],
.toolbarButton.download,
.toolbarButton.print,
.toolbarButton.openFile {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Prevent text selection */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #525252;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

/* Disable context menu styling */
body {
  -webkit-touch-callout: none;
}

/* PDF Container */
#pdf-container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  box-sizing: border-box;
  overflow: auto;
}

#pdf-canvas {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  background: white;
  display: block;
  margin: 0 auto 20px;
}

#pdf-controls {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 20px;
  border-radius: 25px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
#pdf-controls button {
  background: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s;
}
#pdf-controls button:hover {
  background: #e0e0e0;
}
#pdf-controls button:active {
  background: #d0d0d0;
}

#page-info {
  color: white;
  font-size: 14px;
  font-weight: 500;
  min-width: 80px;
  text-align: center;
}
/*# sourceMappingURL=reports.css.map */
