/* CSS Styles */

/* Hide scrollbar but keep functionality */
::-webkit-scrollbar {
    width: 8px; /* or 0 if you want it almost invisible */
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent; /* fully transparent thumb */
}

/* Optional: when hovering, you can show it slightly */
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2); /* semi-transparent */
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color:#ffffff;  
  background-color: black;
  background: url("../img/redspinvipcom/background-img.webp");
  background-size: cover;
  background-position: right;
}

.title-1{
  color:#ffc200;
  font-size: 22px;
}

.title-2{
  color:#ffc200;
  font-size: 18px;
}
.float-right-top{
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 10px;
}
.vipprogram-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vipprogram-container {
  padding: 20px 0;
  border-radius: 10px;
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
  max-width: 900px;
  width: 100%;
  /*background: url('img/top-3.png') no-repeat center center;
  background-size: cover; /* Ensures the image covers the entire container */
}

.vipprogram-model{
  width: 100%;
}

.neon-button {
  background-color: #ffbb00;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  position: absolute;
  top: 10px;
}

.vipprogram-status{
  padding-top: 5%;
  text-align: center;

}

.vipprogram-status b {
  font-size: 20px;
}

.vipprogram-status p {
  font-size: 16px;
}

.progress-bar {
  text-align: left;
  background-color: #ddd;
  border-radius: 5px;
  height: 20px;
  width: 100%;
  position: relative;
  margin: 20px 0;
}

.Bar-Width {
  background-color: #ffcc00;
  height: 100%;
  border-radius: 5px;
  display: inline-block;
  /*background: repeating-linear-gradient(
        330deg,
        #ffd438, 
        #e0b000 10px,
        #705800 10px,
        #705800 20px
    );*/
    background: repeating-linear-gradient(
        330deg,
        #ffd438, /* Light Blue */
        #ffd438 10px,
        #e0b000 10px,
        #e0b000 20px
    );
    background-size: 40px 40px; /* Adjust size to control stripe width and spacing */
    animation: stripeRunning 10s linear infinite; /* Adjust speed as needed */
    width: 0%; /* Example width for progress */
    transition: width 0.3s ease;
}
.progress-section{
  overflow: auto; 
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.status-level {
    display: flex;
    justify-content: flex-end;;
    flex-wrap: nowrap; /* Prevent wrapping */
    margin-top: 20px;
    padding: 10px;
    gap: 0px;
    width: 100%;
}

.all-level {
    flex: 0 0 auto; /* Prevent items from shrinking */
    /*padding: 0 5px 0 0;*/
    border-radius: 5px;
    color: #ffffff;
    text-align: right;
    font-size: 14px; /* Smaller font size */
    width: 120px; /* default width */
    
}
span.deposit-style {
    overflow: hidden;
    width: 100%;
    display: block;
}
.section-hr{
  width:100%;
  display: inline-block;
}

.level-hr {
  height: 4px;
  border: none;
  width: 50px;
  margin: 0;
  float: right;
}

.vipprogram-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
}

.vipprogram-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.vipprogram-table td {
  padding: 10px;
}

.vip-icon img {
  /*width: 80px;*/
  width: 110px;
}
.vipprogram-table-wrapper{
  border: 2px solid #ffc200;
  border-radius: 20px;
  padding: 5px;
}
.vipprogram-table tr:nth-child(n+3) {
  border-top: 2px solid #ffc200;
}
.rewards-tr{
  height: 150px;
}
.rewards-tr td {
  font-size: 14px;
  align-items: center;
  padding: 10px; /* Optional: Adjusts spacing inside cells */
}

.rewards-tr td .reward-item {
  margin-bottom: 5px; /* Space between the amount and the button */
  white-space: nowrap;
}

.button-claim {
  padding: 5px;
  background-color: #ffbb00;
  color: #ffffff;
  margin-top: 0; /* Ensure no extra margin at the top of the button */
  border-radius: 5px;
  cursor: pointer;
}
.button-claim-disable {
  padding: 5px;
  background-color: grey;
  color: #ffffff;
  margin-top: 0; /* Ensure no extra margin at the top of the button */
  border-radius: 5px;
}

.footer {
  margin-top: 30px;
  padding: 10px 10px 50px 10px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}
/*scroll down popup */
        .popup-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

/* Popup Container Submit Button */
        .popup-container input[type="submit"],.popup-container input[type="button"] {
            background-color: #ffbb00;
            color: #ffffff;

        }
        .popup-container input[type="submit"]:hover,.popup-container input[type="button"]:hover {
            background-color: #ffbb00;
            color: #ffffff;

        }

        .popup {
            background-color: #e0b000;
            color: #ffffff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 300px;
            margin: auto;
        }

        #popupMessage {
            margin-bottom: 20px;
            display: block;
        }

        .popup button {
          background-color: #ffbb00;
          color: #ffffff;
          border: none;
          padding: 10px 20px;
          text-align: center;
          text-decoration: none;
          display: block;
          font-size: 16px;
          border-radius: 5px;
          cursor: pointer;
          margin: 5px auto;
        }
        .popup-input {
          padding: 10px;
          font-size: 16px;
          border: 1px solid #ccc;
          border-radius: 5px;
          outline: none;
          margin: 10px 0;
          text-align: center;
      }

      /* Ensure the date picker is styled properly */
      .popup-input:focus {
          border-color: #007bff;
          box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
      }


/* Keyframe Animation for Diagonal Stripes Effect */
@keyframes stripeRunning {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@media only screen and (max-width: 768px) {
  .vipprogram-container {
    width: 90%;
  }
  .vipprogram-status b {
    font-size: 12px;
  }

  .vipprogram-status p {
    font-size: 10px;
    text-overflow: ellipsis;
    overflow: auto;
  }
  .all-level {
    font-size: 10px;
    width: 100px;
    padding: 0 5px 0 0
  }
  .title-1{
    font-size: 14px;
  }
  
  .title-2{
    font-size: 12px;
  }
  .footer{
    font-size: 12px;
  }
  .footer h2{
    font-size: 14px;
  }
  .rewards-tr td {
    font-size: 10px;
  }
  .vipprogram-table td {
    font-size: 12px;
    min-width: 80px !important;
    white-space: nowrap;
  }
  .vipprogram-table tr td:first-child {
    text-align: left;
    font-size:12px;
  }
  .vip-icon img {
    /*width: 50px;*/
    width: 110px;
  }
  .neon-button {
    font-size: 12px;
  }
  .progress-section {
    align-items: flex-start;
  }
  .status-level {
    justify-content: space-between;
    width: fit-content;
}
}