/* --  style.css  --*/

/* --- Global Theme & Typography --- */
:root {
  --primary-blue: #0a58ca;
  --hover-blue: #084298;
  --bg-light: #f8f9fa;
  --bg-content: #f1f3f5;
  --border-color: #dee2e6;
  --text-dark: #333;
}

/* --- Hide-Show / Toggle Components --- */
.toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 500; /* Increased from 300 for better visibility */
  gap: 10px;
  padding: 8px 12px;
  margin-left: 16px; /* indent */
  border-radius: 6px;
  color: var(--primary-blue);
  transition: all 0.2s ease;
}

.toggle:hover {
  background-color: #e7f1ff;
}

.icon-box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--primary-blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;  
  line-height: 1;
  color: #fff;
  background: var(--primary-blue); /* Solid blue for a "button" feel */
  box-shadow: 0 2px 4px rgba(10, 88, 202, 0.2);
}


.simple-table td, .simple-table tr, .simple-table th {
  border: 1px solid black;
  padding: 6px;
}

.simple-table th {
font-weight: bold;
}


.carousel-border{
	border: 1px solid black;
	padding: 5px;

}

img{
  border: 0px; 
}

.caption{
  background-color: #f2f2f2;
  color: #333;
  font-style: italic;
  width:500px;
  padding: 10px;
  margin:0px;
}

.content{
  background-color: #F9F8F6;
  padding: 10px; 
  margin:10px;
  border: 1px solid light-gray;
}

#carousel-wrapper {
  position: relative;
  width: 500px; 
}

#carousel {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;  
}

/* arrows */
#prev, #next {
  position: absolute;
  top: 40%;
  transform: translateY(-40%);
  font-size: 15px;
  font-weight: bold;
  color: #333;
  out.background: rgba(255,255,255,0.7);
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
  user-select: none;
  z-index: 10;
}

/* left arrow */
#prev {
  left: -30px;
}

/* right arrow */
#next {
  right: -40px;

}
