body
{
  background: black;
  margin: 0px 0px 0px 0px;
}

:link
{
  color: #f0f0f0;
}

:visited
{
  color: #d0d0d0;
}

.bold
{
  font-family: arial,helvetica,sans-serif;
  font-size: 12pt;
  color: #f0f0f0;
  font-weight: bold;
}

.italics
{
  font-family: arial,helvetica,sans-serif;
  font-size: 12pt;
  color: #d0d0d0;
  font-style: italic;
}

.normalText
{
  font-family: arial,helvetica,sans-serif;
  font-size: 12pt;
  color: #d0d0d0;
}

.bodyText
{
  font-family: arial,helvetiica,sans-serif;
  font-size: 9pt;
  color: #d0d0d0;
}

.smallText
{
  font-family: arial,helvetica,sans-serif;
  font-size: 8pt;
  color: #303030;
}

.titleText
{
  font-family: arial,helvetica,sans-serif;
  font-size: 13pt;
  color: #d0d0d0;
  text-align: center;
  letter-spacing: 0.25em;
}

a {
    color: #d0d0d0;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

a:hover {
    color: #f0f0f0;
    border-bottom-color: #0056b3;
}

.overlay-container {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6); /* Slightly darker for focus */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-container.active {
    display: flex;
    opacity: 1;
}

.popup-box {
    background-color: black;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 90%;
    width: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy effect */
}

.overlay-container.active .popup-box {
    transform: scale(1);
}

#popup-title {
    margin: 0 0 15px 0;
    font-family: arial,helvetica,sans-serif;
    color: #d0d0d0;
    font-size: 13pt;
}

#popup-image {
    max-width: 100%;
    max-height: 60vh;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.popup-close-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: background 0.2s;
}

.popup-close-btn:hover {
    background: #cc0000;
}

.inline-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    opacity: 0.7;
}


