h1 {
  font-family: Arial, sans-serif;
  font-size: 48px;          /* Larger than live-title */
  color: #2c3e50;           /* Dark blue-gray */
  font-weight: 700;         /* Bold */
  position: relative;
  display: inline-flex;
  align-items: center;
  text-align: center;
  gap: 16px;                /* Slightly larger gap */
  padding: 12px 20px;       /* More padding */
  background-color: #f8f9fa;/* Light gray background */
  border-radius: 10px;      /* Slightly larger radius */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15); /* Stronger shadow */
}
/* Red dot for h1 */
h1 .live-dot {
    width: 16px;              /* Larger dot */
    height: 16px;
    background-color: #e74c3c;/* Red color */
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite ease-in-out;
    box-shadow: 0 0 6px rgba(231, 76, 60, 0.5); /* Slightly larger glow */
}

/* Hover effect for h1 */
h1:hover {
    background-color: #ebedef;
    transition: background-color 0.3s ease;
}

h2 {
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 50px;
  font-size: 40px;
}

h3 {
  font-family: Arial, sans-serif;
  text-align: center;
  font-size: 20px;
}

table {
  width: 75%;

}
tbody {
  text-align: center;
}
td {
  text-align: center;
}
th, td {
  padding: 10px;
}

th {
  background-color: lightgray
}
hr {
  height:1px;
  border:0px;
  background:#C34A4A;
  margin:25px 0 25px 0;
  clear:both;
}

/*button {
  background-color: #4CAF50; /* Green */
 /*  border: none;
  color: white;
  padding: 15px 40px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 2px 2px;
  cursor: pointer;
} */



/* --------------------------------------------------------	*/
/*	button */
/* --------------------------------------------------------	*/

:root {
  --background: #E5FFB3;
  --background-accent: #DBF8A3;
  --background-accent-2: #BDE66E;
  --light: #33B7DF;
  --dark: #227FBD;
  --text: #001757;
}

/*div {
  display: block;
  width: 400px;
  margin: 0 auto 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 30vh;
}*/


.video-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.video-btn:hover {
    background: linear-gradient(135deg, #5d78e6, #9166cc);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------------------	*/
/*	Footer */
/* --------------------------------------------------------	*/

#footer {
  position:relative;
  color:#8c8e90;
  font-size:14px;
  line-height:22px;
  padding:30px 41px 20px 41px;
  background:#3E3F41;
  border-bottom:2px solid #060606;
  overflow:hidden;
}

#footer h2 {
  margin-bottom:0px !important;
  padding-bottom:0px !important;
  padding-top:20px;
  color:#ffffff;
}

#footer h3 {
  padding-bottom:10px !important;
  color:#ffffff;
}

.logo-footer{
  line-height:32px;
}

.logo-footer img{
  width:auto;
  float:left;
  margin-right:20px;
}

#footer a {
  color:#8c8e90;
  text-decoration:none;
}

#footer a.white {
  color:#fff;
}

#footer a:hover, #footer a.white:hover {
  color:#83adff;
  text-decoration:none;
}

#footer i {
  margin-right:12px;
}

.texture-footer {
  position:absolute;
  top:-30px;
  right:-150px;
}

#footer .btn {
  background:#282828;
  text-shadow:none;
  border-radius:2px;
  -webkit-box-shadow:rgba(255, 255, 255, 00) 0 0 0 inset, rgba(0, 0, 0, 00) 0 0 0;
  background-image:-webkit-linear-gradient(top, #282828, #282828);
  margin-top:10px;
}

#footer .btn:hover {
  background:#3b3b3b;
}

#footer .btn i {
  margin-left:12px;
  margin-right:0px;
}

/* --------------------------------------------------------	*/
/*	Live dot */
/* --------------------------------------------------------	*/

.ring-container {
    position: relative;
}

.circle {
    width: 15px;
    height: 15px;
    background-color: #E40000;
    border-radius: 50%;
    position: absolute;
    top: 23px;
    left: 23px;
}

.ringring {
    border: 3px solid #E40000;
    -webkit-border-radius: 30px;
    height: 25px;
    width: 25px;
    position: absolute;
    left: 15px;
    top: 15px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.0
}
@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}

/* --------------------------------------------------------    */
/*   Basic styling for better appearance */
/* --------------------------------------------------------    */
/* Basic styling for better appearance */
.container {
/*    max-width: 1000px;*/
/*    margin: 20px auto;*/
}

/* General Title Class Styling */
.title {
  font-family: Arial, sans-serif;
  font-size: 24px;          /* Smaller than h1, larger than buttons */
  color: #2c3e50;
  font-weight: 700;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;                /* Moderate gap */
  padding: 6px 12px;        /* Moderate padding */
  background-color: #f8f9fa;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Red dot for .title */
.title .live-dot {
  width: 10px;              /* Slightly smaller dot */
  height: 10px;
  background-color: #e74c3c;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite ease-in-out;
  box-shadow: 0 0 4px rgba(231, 76, 60, 0.5);
}

/* Hover effect for .title */
.title:hover {
  background-color: #ebedef;
  transition: background-color 0.3s ease;
}

.content {
    padding: 10px;
    border: 1px solid #f0f0f0;
    border-radius: 0 0 4px 4px;
    display: none;
}

.content.visible {
    display: block;
}
/* Icon container */
.title .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
}
.icon {
    transition: transform 0.3s ease; /* Smooth rotation */
}

.icon.expanded {
    transform: rotate(90deg); /* Rotates when expanded */
}

/* --------------------------------------------------------    */
/*   styled-link*/
/* --------------------------------------------------------    */
.styled-link {
    /* Core appearance */
    color: #2c3e50;          /* Dark blue-gray color */
    text-decoration: none;    /* Remove default underline */
    padding: 6px 12px;        /* Comfortable clickable area */
    border-radius: 4px;       /* Rounded corners */
    font-family: Arial, sans-serif;
    font-weight: 500;         /* Medium weight */
    transition: all 0.3s ease;/* Smooth transitions */
    position: relative;       /* For pseudo-element positioning */
    display: inline-block;    /* Better control over dimensions */
}

/* Hover state */
.styled-link:hover {
    color: #3498db;          /* Bright blue on hover */
    background-color: #f8f9fa;/* Light gray background */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Active state (when clicked) */
.styled-link:active {
    transform: translateY(1px); /* Push down effect */
    box-shadow: none;         /* Remove shadow when pressed */
}

/* Visited state */
.styled-link:visited {
    color: #8e44ad;          /* Purple for visited links */
}

/* Optional: Add an underline effect on hover */
.styled-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #3498db;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.styled-link:hover::after {
    width: 80%;              /* Grows from center */
}

/* --------------------------------------------------------    */
/*   styled-link*/
/* --------------------------------------------------------    */
/* Container for centering */
.container {
/*    max-width: 800px;*/
/*    margin: 20px auto;*/
    text-align: center;
}

/* Main title styling */
.live-title {
    font-family: Arial, sans-serif;
    font-size: 32px;
    color: #2c3e50;          /* Dark blue-gray */
    font-weight: 700;         /* Bold */
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;               /* Space between dot and text */
    padding: 8px 16px;
    background-color: #f8f9fa;/* Light gray background */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Red dot styling */
.live-dot {
    width: 12px;
    height: 12px;
    background-color: #e74c3c; /* Red color */
    border-radius: 50%;       /* Circle shape */
    display: inline-block;
    animation: pulse 1.5s infinite ease-in-out; /* Soft pulsing */
    box-shadow: 0 0 4px rgba(231, 76, 60, 0.5); /* Subtle glow */
}

/* Pulse animation */
@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
}

/* Optional hover effect */
.live-title:hover {
    background-color: #ebedef;
    transition: background-color 0.3s ease;
}

/* Button Styling (No Dot) */
.plain-button {
  font-family: Arial, sans-serif;
  font-size: 16px;          /* Same text size */
  color: #3498db;
  font-weight: 700;         /* Bold */
  padding: 8px 14px;        /* Same padding as live-button */
  background-color: #f8f9fa;/* Light gray background */
  border: none;             /* No default border */
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;          /* Hand cursor */
  display: inline-block;    /* Keeps it inline, no flex needed */
}

/* Image inside plain-button */
.plain-button img {
  max-height: 20px;         /* Limit image height */
  max-width: 20px;          /* Limit image width */
  object-fit: contain;      /* Keep aspect ratio */
  vertical-align: middle;   /* Ensure alignment */
}

/* Hover effect for plain button */
.plain-button:hover {
  background-color: #ebedef;
  transition: background-color 0.3s ease;
}

/* Active effect for plain button (when clicked) */
.plain-button:active {
  background-color: #d8dbde;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transform: translateY(1px); /* Slight press effect */
}
.plain-link {
  font-family: Arial, sans-serif;
  font-size: 16px;          /* Same text size */
  color: #2c3e50;           /* Dark blue-gray */
  font-weight: 700;         /* Bold */
  padding: 8px 14px;        /* Base padding */
  background-color: #f8f9fa;/* Light gray background */
  border: none;             /* No default border */
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;          /* Hand cursor */
  display: inline-flex;     /* Flexbox for image + text alignment */
  align-items: center;      /* Vertically center content */
  gap: 8px;                 /* Space between image and text */
  text-decoration: none;    /* Remove underline from link */
}

/* Image inside plain-link */
.plain-link img {
  max-height: 20px;         /* Limit image height */
  max-width: 20px;          /* Limit image width */
  object-fit: contain;      /* Keep aspect ratio */
  vertical-align: middle;   /* Ensure alignment */
}

/* Hover effect for plain link */
.plain-link:hover {
  background-color: #ebedef;
  transition: background-color 0.3s ease;
  color: #2c3e50;           /* Keep text color consistent */
}

/* Active effect for plain link (when clicked) */
.plain-link:active {
  background-color: #d8dbde;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transform: translateY(1px); /* Slight press effect */
}