@charset "UTF-8";

*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*this is a comment*/

/*so css structure is: 

1. normal html tags = name of tag (a, p, div, etc.) 
2. classes are identified using .notation 
3. ids are identified using #idName notation 

And that is also the priority (tag, class, id) of specificity for how they get displayed 
...perhaps why it is called Cascading Style Sheets?



userID {
	position: absolute;
	left:-2000px;
	display:none; 
	visibility:hidden;
}

*/

a {
    background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color: black;
	font-family:"Helvetica";
	font-size:14px;
	font-weight:300;
	line-height:20px;
	margin:0;
	padding:1px 4px 0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
	
}

/* CSS styles */
.marquee-container {
    position: relative;
    width: 100%;
    height: 40px; /* Adjust the height to fit your thumbnails */
    overflow: hidden;
}

.marquee-left, .marquee-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation-duration: 100s;
    animation-iteration-count: infinite;
}

.marquee-left {
    animation-name: marquee-left;
}

.marquee-right {
    animation-name: marquee-right;
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

button{
	margin: 5px;
	line-height:20px; 
    text-align: center;
    background-color: #007bff;
	color: #fff; 
	border: none; 
	padding: 2px 4 px; 
	border-radius: 5px; 
	font-size: 12px; 
	cursor: pointer; 
	outline: none;
	transition: background-color .5s ease;
}

form {
	width: 100%;
	margin: auto;
	max-width: 600px; 
	display: flex; 
	flex-flow: row nowrap; 
	justify-content: center; 
	gap: .25rem;
}

form{
	display: flex; 
	justify-content: center; 
	align-items: center;
	margin-bottom: 2px;
}

input {
	flex-grow: 1; 
	max-width: calc(80% - .25rem);
}

form input[type="submit"] {
	background-color: #007bff;
	color: #fff; 
	border: none; 
	padding: 1px 2px; 
	border-radius: 5px; 
	font-size: 12px; 
	cursor: pointer; 
	outline: none;
	transition: background-color .5s ease;
}


.icon {
	width: 100px; 
	height: 100px; 
	background-size: contain; 
	background-repeat: no-repeat; 
	background-position: center center; 
} 

/*** this is a Leaflet requirement
****/

#map { height: 180px; }

.map {
  width: 270px;
  height: 180px auto;
  align-items: center; 
  transition: height 500ms ease-in-out;
}

/***pretty sure these are not map variables and probably not used anywhere****/
.x {
    top: 0;
    left: 0;
}
.y {
    top: 10px;
    left: 10px
}
.z {
    top: 20px;
    left: 20px;
}

.wrapingimage, .icon  
{  
float: left;   
margin: 30px 12px 3px 4px;   
border: 2px solid blue;  
}   

/* Underlay */
.underlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  z-index: 4;
  opacity: 0;
  transition: opacity 700ms ease-in-out;
  pointer-events: none;
}

.underlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* .underlay, #underlay {
	position: fixed !important; 
	opacity: 0;
	top: 0 !important; 
	left: 0 !important; 
	right: 0 !important; 
	bottom: 0 !important; 
	background-color: rgba(0, 0, 0, .5) !important;
	pointer-events: none;
	z-index: 4 !important;
	
}
.underlay.active {
	display:true;
	visibility:true;
	opacity: 1 !important; 
	transition: 700ms ease-in-out !important;
	pointer-events: auto !important;
} */


/* Modal */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 500ms ease-in-out, opacity 500ms ease-in-out;
  border: 1px solid black;
  border-radius: 10px;
  z-index: 5;
  background-color: white;
  width: 400px;
  opacity: 0;
}

.modal.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}


/* .modal, #modal{
	position: fixed !important; 
	top: 50% !important; 
	left: 50% !important; 
	transform: translate(-50%, -50%) scale(0);
	transition: 500ms ease-in-out !important;
	border: 1px solid black !important;
	border-radius: 10px !important; 
	z-index: 5 !important; 
	background-color: white !important;
	width: 400px !important; 
	
}
.modal.active {
	transform: translate(-50%, -50%) scale(1) !important;
} */

.modal-header {
	padding: 10px 15px; 
	display: flex;
	justify-content: space-between;
	align-items: center; 
	border-bottom: 1px solid black;
}

.modal-body {
	padding: 10px 15px;
}

.modal-header {
	cursor: pointer; 
	border: none; 
	outline: none; 
	background: none;
	font-size: 1.25rem; 
	font-weight: bold;
}

.modal-backdrop {
   background-color: yellow;
   z-index: 1;
}


.close-button {
	cursor: pointer; 
	border: none; 
	outline: none; 
	background: none;
	color: red; 
	font-size: 1.55rem; 
	font-weight: bold;
}

.title {
	font-size: 1.25rem; 
	font-weight: bold;
}





.singlespace {
	line-height:20px;
}


.breadcrumb, .find {
	display: block;
	margin: auto;
	margin-left:10px;
	margin-right:auto;
	width: 90%;
	border: 1px solid gray;
	padding: 10px;
	text-align: left; 
	text-overflow:ellipsis;
	line-height:20px;
}


.about {
	display: block;
	margin: auto;
	margin-left:auto;
	margin-right:auto;
	width: 90%;
	border: 1px solid gray;
	padding: 10px;
	text-align: left;
	line-height: 20px;
	
}

.menu_top, .feature {
	margin: auto;
	margin-left:auto;
	margin-right:auto;
	width: 90%;
	padding: 10px;
	text-align: center;
	line-height: 20px;
	
}

.search {
	background-color:#fff; 
	box-shadow: 0 0 20px rgba(0,0,0,.2); 
	border-radius: 3px;
	display: block;
	margin: 0 auto;
	margin-left:auto;
	margin-right:auto;
	margin-top: 5px; 
	width: 90%;
	border: 1px solid gray;
	padding: 10px;
	line-height: 20px;
	text-align: left; 
	text-overflow:ellipsis;
}

/* --- Layout --- */
#rss-container {
  display: flex;
  gap: 20px;
  font-family: Arial, sans-serif;
}

/* --- Category sidebar --- */
.category-menu {
  width: 220px;
}

.category-header {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 6px;
  cursor: pointer;
}

.category {
  margin-bottom: 12px;
}

.category-title {
  font-weight: bold;
  font-size: 16px;
  margin: 8px 0;
  cursor: pointer;
}

/* --- Feed list under each category --- */


/* ===========================
   RSS VISIBILITY CONTROL
   =========================== */

/* Only used to gate RSS entirely */
.hidden {
    display: none !important;
}

/* ===========================
   CATEGORY FEED LISTS
   =========================== */

.feed-list {
    display: none;
}

.feed-list.open {
    display: block;
}

/* ===========================
   RSS MODE SWITCHING
   =========================== */

/* When viewing a feed, hide category menu */
#rss-container.rss-mode-feed #category-menu {
    display: none;
}

/* Show Back link only in feed mode */
#rss-container.rss-mode-feed #back-link {
    display: inline-block;
}

/* RSS container must restore flex explicitly */
#rss-container {
    display: flex;
}

#all-categories {
    display: block;
}

#all-categories.open {
    display: block;
}

/* ===========================
   FEED ITEMS
   =========================== */

.feed-item {
    cursor: pointer;
    margin: 4px 0;
    padding-left: 4px;
}

/* ===========================
   FEED CONTENT PANEL
   =========================== */

#feed-content {
    flex-grow: 1;
    border-left: 1px solid #ccc;
    padding-left: 20px;
}

/* ===========================
   BACK LINK
   =========================== */

/* Back link should NEVER show initially */
#back-link {
    display: none;
}



.back-link {
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 10px;
    color: #0066cc;
}

.back-link:hover {
    text-decoration: underline;
}

/* ===========================
   RSS TEXT
   =========================== */

.rssText {
    text-align: left;
}



#location-header {
    margin-bottom: 12px;
}

#location-header h3 {
    margin: 0 0 6px 0;
    font-size: 1.3em;
}

.location-details {
    font-size: 0.95em;
    line-height: 1.3em;
    opacity: 0.9;
}



.container, .content, .menu, .footer, .title{
	
	background-color:#fff; 
	box-shadow: 0 0 20px rgba(0,0,0,.2); 
	border-radius: 5px;
	display: float;
	margin: 0 auto;
	margin-left:auto;
	margin-right:auto;
	margin-top: 10px; 
	width: 90%;
	border: 1px solid gray;
	padding: 10px;
	line-height: 20px;
	text-align: center; 
	text-overflow:ellipsis;
	font-family:"Helvetica";
	
}


.login {
	width: 400;
} 
.loginTable {
	display: center;
	justify-content: center; 
}


.input {
	display: left; 
	justify-content: left;
}


.temperature {
	font-size: 48px; 
	font-weight: bold; 
	margin: 20px 0; 
}

.weatherdescription {
	font-size: 24px; 
	margin-bottom: 20px; 
}

.weatherdetail {
	display: flex; 
	justify-content: center; 
	align-items: center; 
	flex-wrap: wrap;
}

.weatherdetail > div {
	padding: 10px; 
	background-color: #f1f1f1; 
	margin: 5px; 
	flex: 1; 
	border-radius: 5px; 
	text-align: center; 
	min-height: 45px; 
}

.ul, .ul2 {
	justify-content: left;
	align-items: left;
	line-height:20px;
	}

.ul3 {
	justify-content: right;
	align-items: right;
	line-height:20px;
}

.table {
	display: center;
	justify-content: center; 
	width: 90%;
}

.tr {
	line-height:1px;
}
.td {
	justify-content: left;
	align-items: left, top;
	text-align: left;
	text-overflow:ellipsis;
	vertical-align:top;
  	margin-left: 1em;
  	margin: 4px;
	padding: 4px;
	line-height:8px;
	
}

.td2 {
	justify-content: center;
	align-items: center, top;
	vertical-align:top;
	line-height:20px;
}

.td3 {
	justify-content: right;
	align-items: right, top;
	vertical-align:top;
	text-align: right;
  	margin-right: 1em;
  	line-height:20px;
}


.td, .td2, .td3 {
	align-items: top;
	vertical-align:top;
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#666;
	font-family:"Helvetica";
	font-size:14px;
	font-weight:300;
	line-height:20px;
	margin:0;
	text-decoration:none;
	text-shadow:none;
	text-overflow:ellipsis;
}

.th {
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:1px;
	border-radius: 5px;
	color:#279;
	font-family:"Helvetica";
	font-size:14px;
	font-weight:600;
	line-height:30px;
	margin:1;
	padding:1px;
	text-decoration:none;
	text-shadow:none;
	text-overflow:ellipsis; 
	white-space: nowrap;
}

.text, .title, .ul, .ul2, .ul3
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#666;
	font-family:"Helvetica";
	font-size:14px;
	font-weight:300;
	line-height:20px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
	text-overflow:ellipsis;
}


.h3 {
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#373;
	font-family:"Helvetica";
	font-size:18px;
	font-weight:300;
	line-height:20px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
	margin-top: 0em;
	margin-bottom: -1em;
}



/* I like this card style design borrowed from USJ journal

Put this in a .css file or inside <style> in the JSP */

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin: 20px auto;
  max-width: 1200px;
}


.resource-card {
  background: white;
  text-align: center;
  padding: 10px;
  border: 2px solid gray;
  border-radius: 12px;
  font-size: 0.9em;
  color: black;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.resource-card video,
.resource-card audio {
  max-width: 100%;
  border-radius: 8px;
  border: 2px solid gray;
}

.caption {
  margin-top: 6px;
  font-size: 0.9em;
  color: black;
}

.resource-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid gray;
}

.file-ext {
  font-size: 0.8em;
  color: #666;
  margin-left: 4px;
  text-transform: uppercase;
}


.show-me{
	display:true;
	visibility:true;
	
}















