* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #eee url("/images/Gray_Weave5185.gif");
    color: #000;
    overflow-x: hidden;
}


/* ============================================================
   PAGE WRAPPER
   ============================================================ */
#page {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

#main {
    width: 100%;
    max-width: 900px;   /* or whatever your site width is */
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    background: #ccc url("/images/bg1.gif");
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
    margin: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
}

#site-header img {
    width: 100%;
    height: auto;
    display: block;
}

.big-centered-title {
    text-align: center;
    font-size: 2.5rem;   /* adjust as needed */
    font-weight: bold;
    color: black;
    line-height: 1.3;
    margin: 20px 0;
}

.content a {
    color: #0044cc;
    font-weight: bold;
}

.content a:hover {
    text-decoration: underline;
}

.minutes-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
}

.minutes-list li {
    margin: 8px 0;
    text-align: left;   /* or center if you prefer */
}

.minutes-list img {
    vertical-align: middle;
    margin-right: 8px;
}


/* ============================================================
   NAVIGATION BAR (DESKTOP + MOBILE)
   ============================================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100000;
  background: #888;
  width: 100%;
}

#mobile-toggle { display: none; }

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 4px 0;
  transition: 0.2s;
}

.nav-menu {
  display: flex;
  justify-content: center; /* <-- add this */
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: block;
  padding: 10px 12px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-menu > li > a:hover { background: #aaa; }

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #aaa;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 100;
}

.submenu li a {
  display: block;
  padding: 9px 14px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.submenu li a:hover { background: #bbb; }

/* Desktop hover submenus */
@media (min-width: 801px) {
  .has-submenu:hover > .submenu { display: block; }
}

/* Markie Banner */
.meeting-banner {
    margin: 0;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1;
}

.meeting-text {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    font-weight: bold;
    animation: scroll-left 15s linear infinite;
    white-space: nowrap;
    max-width: 100%;    
}

@keyframes scroll-left {
    0%   { transform: translateX(100%); }   /* start fully off-screen right */
    100% { transform: translateX(-100%); }  /* exit fully off-screen left */
}


/* Base block (shared by all) */
.side-block {
    margin-bottom: 20px;
    border: 1px solid #aaa;
    border-radius: 4px;
    overflow: hidden;
}

/* Base title/body styles */
.side-block-title {
    font-weight: bold;
    padding: 6px 10px;
    font-size: 1.1rem;
    text-align: center;
}
.side-block-body {
    padding: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Color themes */
.block-liteblue .side-block-title { background: #b2c0c3; color: #fff; }
.block-liteblue .side-block-body  { background: #c5d5d9; }

.block-grey .side-block-title { background: #7d7d7d; color: #fff; }
.block-grey .side-block-body  { background: #d2d0d0; }

.block-blue .side-block-title { background: #008dd2; color: #fff; }
.block-blue .side-block-body  { background: #c7e0ef; }

.block-yellow .side-block-title { background: #ffa000; color: #000; }
.block-yellow .side-block-body  { background: #fefed4; }


.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 0 auto;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================================
   TWO-COLUMN LAYOUT (DESKTOP + MOBILE)
   ============================================================ */

/* Desktop layout: left + right side by side */
.columns-sidebar {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 20px;
}

/* Optional: ensure columns behave nicely */
.left-column,
.right-column {
    width: 100%;
}

#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 8px 12px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    background: #888;
    color: #000;
    cursor: pointer;
    display: none;
    z-index: 9999;
}

video {
    max-width: 100%;
    height: auto;
    display: block;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    object-fit: cover;
}


.daily-quote {
    margin-bottom: 2px;
}

.daily-quote-author {
    font-size: .6rem;
    font-style: italic;
    margin-bottom: 20px;
}

.centered-image {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    height: auto;
}

.centered-image:hover {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.image-wrapper {
    text-align: center;
    width: 100%;
}

.section-header {
    font-family: 'Tangerine', cursive;
    font-size: 3rem;
    font-weight: bold;
    color: #b30000;
    text-align: center;
    margin: 20px 0 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.25);

    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    width: 65%;
    max-width: 100%;
    display: block;
    margin: 20px auto;
}

/* Wrap the entire minutes section */
.minutes-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Center the year headings */
.minutes-year {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin: 30px 0 10px 0;
}

/* Center the list block under each year */
.minutes-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 500px;
}

/* Left-align each entry inside the centered block */
.minutes-list li {
    text-align: left;
    margin: 6px 0;
}

/* Keep checkbox and text on the same line */
.minutes-list img {
    vertical-align: middle;
    margin-right: 8px;
    display: inline-block;
}

/* Center the entire minutes block */
.minutes-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Center the UL under the year */
.minutes-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;   /* THIS is the magic */
    text-align: left;        /* Keep entries left-aligned */
}

/* Keep checkbox + text aligned */
.minutes-list img {
    vertical-align: middle;
    margin-right: 8px;
}

.smiley-image {
    width: 270px;
    height: auto;
    margin: 20px 0;
}

.details {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 20px;
}

.archive-grid .archive-button,
.archive-grid button.archive-button {
    display: block;
    width: 100%;
    background: #1e73be !important;
    color: white !important;
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

#main .fd-center button.archive-button {
    width: auto !important;
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.archive-grid .archive-button:hover {
    background: #155a8f !important;
}

.archive-button {
    display: block;
    background: #1e73be;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.archive-button:hover {
    background: #155a8f;
    transform: translateY(-2px);
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.fd-center {
    display: block !important;
}

/* Phones: force 1 column */
@media (max-width: 600px) {
    .archive-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   OFFICERS PAGE LAYOUT (DESKTOP)
   ============================================================ */

.officers-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.officer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 35px;
    margin-bottom: 0;
    text-align: left;
    width: 100%;
}


.polaroid {
    background: #fdf8e4;
    padding: 10px 10px 10px 10px;
    border: 1px solid #d8cfae;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.25);
    width: 180px;
    text-align: center;
    border-radius: 2px;
    margin: 0;
}

.polaroid img {
    width: 100%;
    height: auto;
    display: block;
}

.polaroid .caption {
    margin-top: 2px;
    font-weight: bold;
    font-size: 1rem;
}

.officer-info {
    flex: 1;
    max-width: 275px;
}

/* ============================================================
   MOBILE PAGE LAYOUT (max-width: 800px)
   ============================================================ */
@media (max-width: 800px) {

    .columns-sidebar {
        grid-template-columns: 1fr;
    }

    /* Collapse columns */
    .columns-equal {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .right-column { order: 1; }
    .left-column { order: 2; }

    /* Collapse officer layout */
    .officer {
        flex-direction: column;
        align-items: center;
        gap: 0;
        text-align: center;
    }

    .officer-info {
        width: auto;
        max-width: 300px;
        margin-top: 2px;
        text-align: center;
    }

    .polaroid {
        margin: 0 auto;
    }
}



/* ============================================================
   MOBILE NAVIGATION (max-width: 800px)
   ============================================================ */
@media (max-width: 800px) {

  /* Show hamburger */
  .hamburger {
    display: flex !important;
  }

  /* Hide menu until toggled */
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  /* Toggle menu open */
  #mobile-toggle:checked ~ .nav-container .nav-menu {
    display: flex;
  }

  /* Animate hamburger to X */
  #mobile-toggle:checked ~ .nav-container .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  #mobile-toggle:checked ~ .nav-container .hamburger span:nth-child(2) {
    opacity: 0;
  }
  #mobile-toggle:checked ~ .nav-container .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile submenu styles */
  .nav-menu > li > a {
    padding: 12px 16px;
    border-bottom: 1px solid #999;
  }

  .submenu {
    position: static;
    background: #777;
    display: none;
  }

  .submenu li a {
    padding: 10px 28px;
    background: #777;
    border-bottom: 1px solid #888;
  }

  .submenu li a:hover { background: #999; }

  .has-submenu.open > .submenu { display: block; }
}


/* ============================================================
   PAGE GROUP: FIELD DAY RESULTS
   ============================================================ */

.page-FD-Results .fd-banner {
    text-align: center;
    margin: 20px 0;
    width: 65%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}


.page-FD-Results .fd-banner img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-FD-Results .fd-intro {
    font-size: 1.3rem;
    line-height: 1.5;
    margin: 20px auto;
    max-width: 800px;
}

.page-FD-Results .fd-center {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-FD-Results .fd-center form {
    display: flex;
    justify-content: center;
    width: 100%;
}

.page-FD-Results .archive-button {
    width: auto !important;
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.page-FD-Results .fd-stats {
    max-width: 700px;
    margin: 20px auto;
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: center;
}

.page-FD-Results .fd-links {
    text-align: center;
    margin: 20px 0;
}

.page-FD-Results .fd-links a {
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: #1e73be;
}

.page-FD-Results .fd-links a:hover {
    text-decoration: underline;
}

.page-FD-Results .fd-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
}

.page-FD-Results .fd-image-tiny          { max-width: 50px; }
.page-FD-Results .fd-image-extra-small   { max-width: 150px; }
.page-FD-Results .fd-image-small         { max-width: 300px; }
.page-FD-Results .fd-image-medium        { max-width: 400px; }
.page-FD-Results .fd-image-large         { max-width: 600px; }

.page-FD-Results .video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
}

.page-FD-Results .video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}


/* ============================================================
   PAGE GROUP: PHOTO GALLERY
   ============================================================ */

.page-gallery {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.page-gallery table {
    width: 100%;
    border-collapse: collapse;
}

.page-gallery td {
    padding: 10px;
    text-align: center;
    vertical-align: bottom;
}

.page-gallery img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.page-gallery .download-link {
    font-size: 0.8rem;
    margin-top: 5px;
}

.page-gallery .top-link {
    text-align: center;
    margin: 20px 0;
}

.page-gallery .gallery-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-gallery .gallery-info {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 20px;
}

/* ============================================================
   PAGE GROUP: GALLERY VIEWER (FULLY ISOLATED)
   ============================================================ */

.page-gallery-viewer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Main viewer container */
.page-gallery-viewer .gallery-viewer {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Displayed image */
.page-gallery-viewer .gallery-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Navigation zones */
.page-gallery-viewer .nav-left,
.page-gallery-viewer .nav-right {
    position: absolute;
    top: 0;
    height: 100%;        /* Only covers the image */
    width: 10%;          /* Narrow, doesn’t cover email link */
    cursor: pointer;
    background: transparent;
    transition: background-color 0.2s ease;
    z-index: 10;
}

.page-gallery-viewer .nav-left { left: 0; }
.page-gallery-viewer .nav-right { right: 0; }

/* Hover effect */
.page-gallery-viewer .nav-left:hover,
.page-gallery-viewer .nav-right:hover {
    background-color: transparent;
}


/* Arrow icons */
.page-gallery-viewer .nav-left::after,
.page-gallery-viewer .nav-right::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5; /* semi-transparent */
}

/* Left arrow */
.page-gallery-viewer .nav-left::after {
    left: 10px;
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='white' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='15 18 9 12 15 6'/></svg>");
}

/* Right arrow */
.page-gallery-viewer .nav-right::after {
    right: 10px;
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='white' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 6 15 12 9 18'/></svg>");
}
url("../Gallery/Lester_Woosley_DXCC/Display/LESTER_WOOSLEY_DXCC-001.jpg");


@media (max-width: 700px) {

    /* Let the viewer shrink to the image height */
    .page-gallery-viewer .viewer-container {
        height: auto !important;
        display: block !important;
        padding: 0;
        position: relative; /* needed for arrow alignment */
    }

    /* Make sure the image sizes naturally */
    .page-gallery-viewer .gallery-image {
        max-height: none !important;
        height: auto !important;
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    /* Pull the caption up close to the image */
    .page-gallery-viewer .gallery-caption {
        margin-top: 10px !important;
    }

    /* Arrow zones follow the image height */
    .page-gallery-viewer .nav-left,
    .page-gallery-viewer .nav-right {
        height: 100% !important;   /* match the image height */
        top: 0 !important;
    }

    /* Keep arrows vertically centered */
    .page-gallery-viewer .nav-left::after,
    .page-gallery-viewer .nav-right::after {
        top: 50% !important;
        transform: translateY(-50%);
    }
}

/* ============================================================
   PAGE GROUP: GALLERY (THUMBNAILS + VIEWER)
   ============================================================ */

/* ------------------------------
   THUMBNAIL LISTING PAGE
   ------------------------------ */

.page-gallery {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.thumb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.thumb img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.gallery-zip {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1rem;
}

.thumb {
    text-align: center;   /* centers everything inside the thumbnail block */
}

.thumb-download {
    margin-top: 4px;      /* small gap under the image */
}

.thumb-download a {
    font-size: 0.65rem;   /* smaller text */
    color: color: #555;
    text-decoration: none;
}

.thumb-download a:hover {
    text-decoration: underline;
}


/* ------------------------------
   FULL-SIZE VIEWER PAGE
   ------------------------------ */

.page-gallery-viewer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Main viewer container */
.page-gallery-viewer .gallery-viewer {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Displayed image */
.page-gallery-viewer .gallery-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Navigation zones */
.page-gallery-viewer .nav-left,
.page-gallery-viewer .nav-right {
    position: absolute;
    top: 0;
    height: 100%;        /* Only covers the image */
    width: 10%;          /* Narrow, doesn’t cover email link */
    cursor: pointer;
    background: transparent;
    transition: background-color 0.2s ease;
    z-index: 10;
}

.page-gallery-viewer .nav-left { left: 0; }
.page-gallery-viewer .nav-right { right: 0; }

/* Hover effect */
.page-gallery-viewer .nav-left:hover,
.page-gallery-viewer .nav-right:hover {
    background-color: rgba(0, 0, 0, 0.12);
}

/* Arrow icons */
.page-gallery-viewer .nav-left::after,
.page-gallery-viewer .nav-right::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
}

.page-gallery-viewer .nav-left::after {
    left: 10px;
    border-width: 20px 25px 20px 0;
    border-color: transparent #ffffff transparent transparent;
}

.page-gallery-viewer .nav-right::after {
    right: 10px;
    border-width: 20px 0 20px 25px;
    border-color: transparent transparent transparent #ffffff;
}

/* Caption */
.page-gallery-viewer .gallery-caption {
    margin-top: 15px;
    font-size: 1rem;
}

/* Email help text */
.page-gallery-viewer .gallery-email {
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Return button */
.page-gallery-viewer .gallery-return {
    margin-top: 20px;
}

.page-gallery-viewer .gallery-return a {
    display: inline-block;
    padding: 8px 16px;
    background: #444;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.page-gallery-viewer .gallery-return a:hover {
    background: #666;
}

/*
Source - https://stackoverflow.com/a/69781362
Posted by Corrl, modified by community. See post 'Timeline' for change history
Retrieved 2026-06-11, License - CC BY-SA 4.0
*/

#wrapper {
  display: flex;
}

.left,
.right {
  width: 100%;
}

#middle {
  flex-shrink: 0;
  /* white-space: nowrap; */
}


/* Mobile collapse */
@media (max-width: 700px) {
    .page-ten-ten .ten-bottom {
        grid-template-columns: 1fr;
    }

    .page-ten-ten .ten-bottom-item:nth-child(1) { order: 1; }
    .page-ten-ten .ten-bottom-item:nth-child(2) { order: 2; }
    .page-ten-ten .ten-bottom-item:nth-child(3) { order: 3; }
}

.page-ten-ten .ten-bottom-center img.ten-heart {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-ten-ten .ten-bottom-item img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-ten-ten .ten-pre-wrapper {
    text-align: center;
    width: 100%;
}

.page-ten-ten .ten-pre {
    white-space: pre;
    font-family: monospace;
    font-size: 1.05rem;

    /* Make the box shrink to fit the text */
    display: inline-block;

    /* Center the box itself */
    margin-left: auto;
    margin-right: auto;

    /* Optional tiny padding */
    padding: 4px 8px;

    /* Prevent full-width expansion */
    width: auto;
    max-width: none;

    text-align: left;
}

.page-ten-ten .ten-links li {
    display: flex;
    align-items: center;
    gap: 6px;          /* space between checkbox and text */
}

.page-ten-ten .ten-links img {
    margin: 0;         /* reset any old margins */
    vertical-align: middle;
}

.page-ten-ten .ten-links a {
    line-height: 1.3;  /* keeps text tidy next to the icon */
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 0 auto;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

#progress-circle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    text-align: center;
}


#progress-circle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    text-align: center;
}

#upload-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    color: white;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#uploading-text {
    font-size: 22px;
    font-weight: bold;
}

#upload-overlay {
    display: none;
    text-align: center;
    margin: 40px auto 0 auto;  /* pushes it down */
    width: 100%;
}

#uploading-text {
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
}



