@font-face {
  font-family: "Ligconsolata";
  src: url("../../font/Ligconsolata-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Ligconsolata";
  src: url("../../font/Ligconsolata-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

* {
  font-family: "Ligconsolata", sans-serif;
  /* 'sans-serif' como fallback se a Lato não funfar */
}

button:hover {
  cursor: pointer;
}

body {
  background-color: #f0f0f0;
}

.hidden {
  display: none;
}

.pdf-viewer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.pdf-viewer-content {
  width: 90%;
  height: 90%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.pdf-viewer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
}

.pdf-viewer-frame {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
}

.pdf-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

a {
  text-decoration: none;
}

@import url("../css/dark-mode.css");