/*
Default style information for any element in the body of the page
Can be over-ridden by a more specific element such as a 
paragraph, header, or table style
*/

@font-face {
  font-family: "elegant_typewriter";
  src: url('../fonts/elegant_typewriter/ELEGANT TYPEWRITER Regular.ttf');
  
}


.column {
  float: left;
  width: 40%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}



	* {
  box-sizing: border-box;
}

body {
	 font-family: 'elegant_typewriter', sans-serif;
    background-color: #F5F2E8;
    color: #08060a;
    font-size: 30px;
}

/*
Default hyperlink style.  Can be over-ridden by a hyperlink with specific
class label.
*/
a {
	color: #08060a;
}

.secret a {
    text-decoration: none;
}


.btn-link {
  /* Layout and block sizing */
  display: inline-block;
  padding: 10px 20px;
  
  /* Colors and Typography */
  background-color: #007BFF;
  color: #FFFFFF;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none; /* Removes the underline */
  
  /* Borders and Edges */
  border-radius: 5px; /* Rounds the corners */
  border: none;
  
  /* Interactive Feedback */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Change color when the user hovers over the button */
.btn-link:hover {
  background-color: #0056b3;
}




table, th, td {margin:2px;
		 vertical-align:top;
		 border: 2px solid;
		 border-collapse: collapse;
    border-color: #6fa8dc;}

.master {
	font-family: 'elegant_typewriter', sans-serif;
	text-align:center;
	vertical-align:top;
}


#viewer-container {
            position: relative;
            width: 100vw;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #222;
        }
        #pdf-frame {
            width: 80vw;
            height: 90vh;
            border: none;
            background: #fff;
            box-shadow: 0 0 20px #0008;
        }
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(30,30,30,0.7);
            border: none;
            color: #fff;
            font-size: 2rem;
            padding: 0.5em 1em;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 10;
            border-radius: 4px;
            user-select: none;
        }
        #prev-btn { left: 2vw; }
        #next-btn { right: 2vw; }
        #viewer-container:hover .nav-btn {
            opacity: 1;
        }