@charset "utf-8";
/* CSS Document */

html,body{
/*	background-color:#F7AEEF;
	 font-family: "Gochi Hand", cursive;*/
  font-weight: 400;
  font-style: normal;
        height: 100%;
              display: flex;
      flex-direction: column;
      height:100%;
      margin:0;
      padding:0;
}
.bg-none{
    background-color: transparent !important;
    bs-table-bg: #000
}
.no-bg,
  .no-bg thead,
  .no-bg tbody,
  .no-bg tr,
  .no-bg th,
  .no-bg td {
    background-color: transparent !important;
  }

.container {
    position: relative;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.overlay.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
  /* optional: padding/margins for layout */
}

.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}
    #page-loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.85);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    #page-loader.hidden {
        display: none;
    }

    .spinner {
        border: 6px solid #ccc;
        border-top: 6px solid #333;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .points-earned-container {
    position: relative;
    width: 300px;  /* adjust to fit your layout */
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    background: #f9f9f9;
    text-align: center;
    margin: 20px auto;
}

.points-content {
    opacity: 0.4; /* dim the content to show it's disabled */
    pointer-events: none; /* disable interactions */
}

.coming-soon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 1.5em;
    padding: 10px 20px;
    border-radius: 5px;
    pointer-events: none;
}
  #registerModal .modal-content {
	background-color:#F7AEEF;
	 font-family: "Gochi Hand", cursive;
  font-weight: 400;
  font-style: normal;
        height: 100%;
              display: flex;
      flex-direction: column;
      height:100%;
      margin:0;
      padding:0;
}
  }

  /* Optional: style the header */
  #registerModal .modal-header {
      border-bottom: 1px solid #ff69b4; /* pink border */
  }

  /* Optional: style buttons inside the modal */
  #registerModal .btn {
      background-color: #ff69b4;
      border-color: #ff69b4;
      color: #fff;
  }

  #registerModal .btn:hover {
      background-color: #ff85c1;
      border-color: #ff85c1;
      color: #fff;
  }
  
  @media print {
    body * {
        visibility: hidden;
    }
    #printableArea, #printableArea * {
        visibility: visible;
    }
    #printableArea {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}