/* PerfectReputations Glossary — front-end styles */

/* Search box + modal */
.prg-search { max-width: 520px; margin: 0 0 12px; }
.prg-search-input,
.prg-filter {
	width: 100%;
	padding: 11px 14px;
	font-size: 15px;
	border: 1px solid #cfd8e3;
	border-radius: 8px;
	background: #fff;
	box-sizing: border-box;
}
.prg-search-input:focus,
.prg-filter:focus { outline: 2px solid #7aaac8; outline-offset: 1px; }

.prg-modal { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; }
.prg-modal[hidden] { display: none; }
.prg-modal-backdrop { position: absolute; inset: 0; background: rgba(20, 40, 60, 0.5); }
.prg-modal-box {
	position: relative;
	background: #fff;
	border-radius: 12px;
	max-width: 640px;
	width: calc(100% - 32px);
	max-height: 80vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 12px 48px rgba(0,0,0,0.28);
}
.prg-modal-close {
	position: absolute; top: 8px; right: 10px;
	background: transparent; border: 0; font-size: 26px; line-height: 1;
	color: #7a8a9a; cursor: pointer; padding: 4px 8px;
}
.prg-modal-close:hover { color: #3a6186; }
.prg-modal-body { overflow-y: auto; padding: 28px 26px 24px; }

.prg-result { padding: 0 0 18px; margin-bottom: 18px; border-bottom: 1px solid #eef1f5; }
.prg-result:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.prg-result h4 { font-size: 17px; color: #3a6186; margin: 0 0 6px; }
.prg-result .prg-def-body { font-size: 15px; line-height: 1.7; color: #4a5568; }
.prg-empty { color: #7a8a9a; font-style: italic; }

/* Date stamp */
.prg-datestamp { display: inline-block; font-size: 12px; color: #9eaab8; margin-top: 6px; }

/* Archive */
.prg-archive { max-width: 820px; }
.prg-archive .prg-filter { margin-bottom: 16px; }
.prg-az { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 20px; }
.prg-az a {
	display: inline-block; min-width: 26px; text-align: center;
	padding: 4px 8px; border: 1px solid #cfd8e3; border-radius: 6px;
	font-size: 13px; color: #3a6186; text-decoration: none; background: #f4f6f9;
}
.prg-az a:hover { background: #e4eef6; }
.prg-letter { font-size: 20px; color: #3a6186; margin: 22px 0 8px; padding-bottom: 4px; border-bottom: 2px solid #e4eef6; }
.prg-item { border-bottom: 1px solid #eef1f5; }
.prg-term {
	display: block; width: 100%; text-align: left;
	background: transparent; border: 0; cursor: pointer;
	padding: 12px 4px; font-size: 16px; color: #3a6186; font-weight: 500;
}
.prg-term::before { content: "▸"; display: inline-block; margin-right: 8px; color: #9eaab8; transition: transform 0.15s; }
.prg-term[aria-expanded="true"]::before { transform: rotate(90deg); }
.prg-term:hover { color: #4e7fa8; }
.prg-def { padding: 0 4px 16px 24px; font-size: 15px; line-height: 1.7; color: #4a5568; }
.prg-def[hidden] { display: none; }
.prg-item.prg-hidden { display: none; }
.prg-group.prg-hidden { display: none; }
