﻿@charset "utf-8";

body {
	margin: 0 auto;
	font-family: 'Arial', sans-serif;
	background-color: #fff;
	color: #333;
	border-top: solid 3px rgb(230, 180, 34);
	max-width: 1000px;
	background-color:#ffffe0;
}

.sp-only {
	display: none;
}

@media screen and (max-width: 768px) {
	.sp-only {
		display: inline;
	}
}

.container {
	width: 80%;
	margin: 0 auto;
	max-width: 1200px;
	box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
	.container {
	transform: scale(calc(100vw / 1200));
	}
}

@media screen and (max-height: 800px) {
	.container {
	transform: scale(calc(100vh / 800));
	}
}

a {
	color: #007BFF;
	text-decoration: none;
	font-weight: bold;
}
a:hover {
  background-color: #f4f4f4;

}

.button {
	display: inline-block;
	padding: 12px 24px;
	margin-right:1em;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	background-color: #d4af37;
	text-decoration: none;
	border-radius: 50px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	text-shadow:0 2px 4px rgb(0,0,0);
	text-align:center;
	width:auto;
	min-width: 6em;
	max-width: 12em;
}

.button:hover {
	background-color: #b89d29;
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
}

.button:active {
	background-color: #a88924;
	transform: translateY(0);
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.entry {
	margin-bottom: 30px;
	background-color:#fafae0;
}

.majorheading{
	background-color:#F0D685;
	font-size: 24px;
	font-weight: bold;
	padding:0.7em 0.5em 0.7em ;
	margin:0.5em 0em 0.5em;
	border-bottom: 5px solid #914D00;
	text-shadow:1px 1px 0px rgb(255,255,255);
}

.heading {
	font-size: clamp(16px, 2vw, 20px); 
	font-weight: bold;
	border-bottom: 2px solid #914D00;
	background-color: #FFE4B2;
	padding:0.2em 0em 0.2em 0.5em;
	text-shadow:1px 1px 0px rgb(255,255,255);
	
}

.sub-heading {
	padding-left:0.3em;
	font-size: clamp(14px, 1.8vw, 18px);
	color: #333;
	font-weight: bold;
	margin-bottom:0.5em;
}

.details {
	display: flex;
	flex-direction: column;
}

.person-info {
	font-size: 16px;
	display: flex;
	gap: 10px;
	margin-bottom:0.5em;
	margin-left:0.5em;
}

.name {
	text-align: left;
	width:6em;
	white-space: nowrap;
}

.name2 {
	text-align: left;
	width:19em;
	white-space: nowrap;
}

.department {
	color: #555;
}

.page-number {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom:1em;
}

.dots {
	flex-grow: 1;
	text-align: right;
	font-family: "Courier New", Courier, monospace;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	font-family: "Courier New", Courier, monospace;
	margin-left: auto; 
	max-width: calc(100% - 2em);
	color: #aaa;
	font-size: 14px;
}

.number {
	font-size: clamp(12px, 1.5vw, 16px); 
	white-space: nowrap;
	padding-right:0.3em;
}
