html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {font: 12px 'Open Sans', sans-serif; margin:0; padding:0; border-collapse: collapse; box-sizing: border-box;}

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

a {
 text-decoration: none;
 color: var(--title_bar_dark);
 cursor:pointer;
}

a:hover {
 color: #79bdeb; 
}

table {
  border-collapse:collapse;
  margin: 0;
  padding: 0; 
}
  
p {
  margin:0;
  padding:0;
}
  
td {
  margin:0;
  padding:0;
}

label {
  cursor:pointer; 
}

.fixed_width {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure it takes at least the full height of the viewport */
}

.main_body {
    flex: 1; /* Allow .main_body to grow and take up available space */
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Align items to the start */
    /* padding-top: 10vh; Add padding to account for initial position of .main_title */
}

.title_bar {
    display:flex;
    flex-direction: column;
    width:100%;
    background-color: #b5e1fa;
    padding-bottom:10px;
    position:relative;
}

.title_bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f1ddbb;
  clip-path: ellipse(200% 300% at -160% 150%);
}

.main_title {
    text-align: center;
    padding: 0 10px;
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
}

.title_bar.sticky {
    position: fixed;
    top: 0;
    width:100%;
    background-color: white; /* Optional: Add background color when sticky */
    z-index: 1000; /* Ensure it stays on top */
    border-bottom: 2px solid #ccc; 
    flex-direction: row;
    align-items:baseline;
    justify-content: flex-start;
    gap:10px;
    padding-bottom:0;
    transition: ease-in-out 0.3s; /* Smooth transition for the sticky effect */
}

.main_subtitle {
    width: 100%;
    text-align: center;
    font-size: 18px;
}

.main_content {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}   

.content_title {
    font-size: clamp(12px, 3vw, 18px);
    font-weight:600;
    padding-bottom:10px;
}

.content_flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16vw;
    gap:26px;
}

.content_flex > div {
    width: clamp(100px, 20vw, 200px); /* Responsive width */
    height: clamp(50px, 10vh, 100px); /* Responsive height */
    display:flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border: 1px solid #ff6f61;
    border-radius:4px;
    font-size: clamp(12px, 12vw, 16px);
    padding:0.8em;
}

.bottom_bar {
    width: 100%;
    background-color: #0c53cf;
    color: #fff;
    position: sticky;
    bottom: 0;
    padding: 10px;
    text-align: center;
}

.bottom_content {
    width: 100%;
    min-height:100px;
    text-align: center;
    padding: 10px;
    font-size: clamp(12px, 1vw, 14px);
    background-color: #0c53cf;
    color: #fff;
    position:relative;
}

.bottom_content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f1ddbb;
  clip-path: ellipse(200% 300% at 260% 150%);
}

.bottom_content.sticky {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #0c53cf; /* Optional: Add background color when sticky */
    z-index: 1000; /* Ensure it stays on top */
    transition: ease-in-out 0.3s; /* Smooth transition for the sticky effect */
}

/*loading div css */
/* Define the container div */
.loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  
  .loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    display:flex;
    align-items:center;
    justify-content:center;
  }
  
  /* Define the loading animation */
  .loading-circle60 {
    width: 60px;
    height: 60px;
    border: 6px solid #ccc;
    border-top-color: #00bcd4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  /* Define the loading animation */
  .loading-circle10 {
    width: 10px;
    height: 10px;
    border: 3px solid #ccc;
    border-top-color: #00bcd4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  /* Define the loading animation */
  .loading-circle20 {
    width: 20px;
    height: 20px;
    border: 5px solid #ccc;
    border-top-color: #00bcd4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  /* Define the loading animation */
  .loading-circle30 {
    width: 30px;
    height: 30px;
    border: 8px solid #ccc;
    border-top-color: #00bcd4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  /* Define the animation keyframes */
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .icon {
    position: relative;
    display: inline-block;
    width: 80px; /* Adjust size as needed */
    height: 80px;
  }
  
  .circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0c53cf; /* Change to your desired color */
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  
  .rectangles {
    position: absolute;
    top: 50%;
    left: 65px; /* Adjust spacing */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px; /* Space between rectangles */
  }
  
  .rectangle {
    width: 30px;
    height: 10px;
    background-color: #0c53cf; /* Same color as the circle */
  }
  
  .hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1000; /* Ensure it is on top of other elements */
}

.hamburger .bar {
    width: 100%;
    height: 4px;
    background-color: #0c53cf; /* Change to your desired color */
    border-radius: 2px;
}

.hamburger:hover .bar {
    background-color: #ff6347; /* Color when hovered over */
}

.gap20 {
  padding:10px; 
}

.gap10 {
  padding:5px; 
}

.gap8 {
  padding:4px; 
}