/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
  }
  
  body {
    background-color: #f8f8f8;
    color: #333;
  }
  
  .container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color:#fffdd087;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Header Section */
  .header {
    display: flex;
    margin-bottom: 20px;
  }
  
  .date-input,
  .dropdown {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 48%;
  }
  
  /* Points Section */
  .section-title {
    text-align: center;
    margin: 15px 0;
    font-weight: 700;
  }
  
  .points-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .point-btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #e0e0e0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .point-btn:hover,
  .point-btn.selected {
    background-color: #6aa06b;
    color: #fff;
  }
  
  /* Digits Section */
  .digits-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 4%;
  }
  
  .digit-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  .modal_button{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
}

.table_header_bid{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    font-weight: 600;
}
.table_content_bid{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    box-shadow: #EEEEEE 5px 5px 5px 5px;
    padding: 4%;
}

  
  .digit-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 23%;
    height: 46px;
    box-shadow: #E0E0E0 5px 5px 5px 5px;
    border-radius: 10%;
    position: relative;
  }
  
  .digit-box label {
    font-size: 20px;
    font-weight: 600;
    color: #757575;
    position: absolute;
    bottom: 0;
  }
  
  .digit-box input {
    width: 60px;
    height: 30px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
  }
  
  /* Buttons */
  .button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .reset-btn,
  .submit-btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .button_container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 4%;
  }
  .footerBid{
    display: flex;
    flex-direction: column;
   }

   .footerBid_span{
    color: red;
   }
  
  .reset-btn {
    background-color: #001f4d;
    color: #fff;
  }
  
  .submit-btn {
    background-color: #a3788d;
    color: #fff;
  }
  
  .reset-btn:hover {
    background-color: #003366;
  }
  
  .submit-btn:hover {
    background-color: #6aa06b;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .date-input,
    .dropdown {
      width: 100%;
      margin-bottom: 10px;
    }
  
    .header {
      flex-direction: row;
    }
  
    .digit-row {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .digit-box input {
      width: 50px;
    }
  
    .button-container {
      flex-direction: column;
      gap: 10px;
    }
  }
  

  @import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&family=Merriweather:wght@900&display=swap");

.container {
  margin-top: 4%;
}


.main_title{
  font-weight: 700;
  font-style: normal;
  text-align: left;
}
  .title_Form{
   display: flex;
   flex-direction: row;
   justify-content: space-around;
  }
  .Empty_data{
    font-size: 19px;
    font-weight: 600;
    color: #9E9E9E;
    margin-top: 48%;

  }

  .game_type_box{
    width: 40%;
    height: 111px;
    box-shadow: #E0E0E0 5px 5px 5px 5px;
    border-radius: 4%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .imageIcon{
    position: absolute;
    top: 26%;
    left: 34%;
  }

  .image_div{
    border: 2px dotted gray;
    height: 252px;
    position: relative;
  }
  .game_type_box_pre{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .breakLine{
    border: 2px solid red;
    width: 56%;
    margin-left: 23%;
  }
  .input_lable_deep{
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    background: linear-gradient(to bottom, #ffffff, #e6e6e6);
    box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.2),
                inset -2px -2px 4px rgba(255, 255, 255, 0.7),
                4px 4px 8px rgba(0, 0, 0, 0.2);
    outline: none;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    border-radius: 25px;
  }

.card {
  display: flex;
  align-items: center;
  background-color:#534848 ;
  border-radius: 23px;
  padding: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  margin: 4%;
}

.icon img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
}

.content {
  flex: 1;
  margin-left: 20px;
}

.content h2 {
  font-family: "Merriweather", serif;
  font-weight: 900;
  color: #b6bef2;
  font-size: 22px;
  margin-bottom: 5px;
}

.content p span,.openBlk {
  font-family: "IBM Plex Sans", sans-serif;
  color: green;
  font-weight: 600;
  font-size: 14px;
}
.text_color_red{
  color: red;
}

.content p,.closeBlk {
  font-family: "IBM Plex Sans", sans-serif;
  color: red;
  font-weight: 600;
  font-size: 14px;
}

.actions {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-button {
  background-color:#007bff;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.disabled{
  background-color: #171b34 !important;
}

.download-button:hover {
  background-color: #e04386;
}

.rating {
  margin-top: 14px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #ecc86b;
  background-color: #171b34;
  padding: 12px 20px;
  border-radius: 39px;
}

.rating i {
  margin-right: 3px;
}

.rating .reviews {
  margin-left: 8px;
  color: #fff;
}

@media (max-width: 768px) {
  .card {
    flex-direction: column;
    padding: 30px;
    text-align: center;
    gap: 30px;
  }

  .content {
    margin-left: 0;
  }

  .content p,
  .breadcrumb a,
  .breadcrumb span,
  .breadcrumb i {
    font-size: 14px;
  }

  .download-button {
    padding: 12px 16px;
    font-size: 16px;
  }

  .rating {
    margin-top: 12px;
    padding: 10px 16px;
    font-size: 14px;
  }
}

/* Container Styles */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
  }

  .topsss{
    margin-top: 11%;
  }
  
  /* Header */
  .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .date-picker {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .change-btn {
    padding: 10px 15px;
    background-color: #6aa06b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Form Body */
  .form-body {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .form-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  /* Buttons */
  .btn {
    cursor: pointer;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-weight: bold;
  }
  
  .add-btn {
    background-color: #6aa06b;
    color: white;
  }
  
  .submit-btn {
    background-color: #6aa06b;
    color: white;
    display: block;
    margin: 20px auto 0;
  }
  
  /* Table Styles */
  .table-container {
    border-top: 1px solid #ddd;
    margin-top: 20px;
  }
  
  .table-header, .table-row {
    display: flex;
    justify-content: space-between;
    padding: 10px;
  }
  
  .table-header {
    font-weight: bold;
    background-color: #f2f2f2;
  }
  
  .table-row {
    border-bottom: 1px solid #ddd;
  }
  
  .table-row div {
    flex: 1;
    text-align: center;
  }
  
  .delete-btn {
    color: red;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
  }
  
  /* Responsive Design */
  @media (max-width: 600px) {
    .form-body {
      flex-direction: column;
    }
  
    .table-header, .table-row {
      flex-direction: column;
      text-align: left;
    }
  
    .table-row div {
      margin: 5px 0;
    }
  }
  
  /* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .form-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
  }
  
  input:focus {
    border-color: #007BFF;
  }
  
  .error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
  }
  
  .submit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .submit-btn:hover {
    background-color: #0056b3;
  }
  
  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .form-container {
      margin: 10px;
      padding: 15px;
    }
  
    input {
      padding: 8px;
      font-size: 12px;
    }
  
    .submit-btn {
      padding: 8px;
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    h2 {
      font-size: 18px;
    }
  
    .form-container {
      padding: 10px;
    }
  
    input {
      padding: 6px;
      font-size: 12px;
    }
  
    .submit-btn {
      padding: 6px;
      font-size: 14px;
    }
  }
  
  .privacy-policy-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    min-height: 100vh;
    box-sizing: border-box;
  }
  
  .privacy-policy {
    max-width: 800px;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .privacy-policy h1 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .privacy-policy h2 {
    font-size: 1.5rem;
    color: #444;
    margin-top: 20px;
  }
  
  .privacy-policy p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .privacy-policy ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
  }
  
  .privacy-policy a {
    color: #007bff;
    text-decoration: none;
  }
  
  .privacy-policy a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .privacy-policy h1 {
      font-size: 1.75rem;
    }
  
    .privacy-policy h2 {
      font-size: 1.25rem;
    }
  
    .privacy-policy p {
      font-size: 0.95rem;
    }
  
    .privacy-policy {
      padding: 15px;
    }
  }
  
  /* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
  }
  
  body {
    background-color: #f8f8f8;
    color: #333;
  }
  
  .container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color:#fffdd087;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Header Section */
  .header {
    display: flex;
    margin-bottom: 20px;
  }
  
  .date-input,
  .dropdown {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 48%;
  }
  
  /* Points Section */
  .section-title {
    text-align: center;
    margin: 15px 0;
    font-weight: 700;
  }
  
  .points-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .point-btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #e0e0e0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .point-btn:hover,
  .point-btn.selected {
    background-color: #6aa06b;
    color: #fff;
  }
  
  /* Digits Section */
  .digits-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 4%;
  }
  
  .digit-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  .modal_button{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
}

.table_header_bid{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    font-weight: 600;
}
.table_content_bid{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    box-shadow: #EEEEEE 5px 5px 5px 5px;
    padding: 4%;
}

  
  .digit-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 23%;
    height: 46px;
    box-shadow: #E0E0E0 5px 5px 5px 5px;
    border-radius: 10%;
    position: relative;
  }
  
  .digit-box label {
    font-size: 20px;
    font-weight: 600;
    color: #757575;
    position: absolute;
    bottom: 0;
  }
  
  .digit-box input {
    width: 60px;
    height: 30px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
  }
  
  /* Buttons */
  .button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .reset-btn,
  .submit-btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .button_container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 4%;
  }
  .footerBid{
    display: flex;
    flex-direction: column;
   }

   .footerBid_span{
    color: red;
   }
  
  .reset-btn {
    background-color: #001f4d;
    color: #fff;
  }
  
  .submit-btn {
    background-color: #a3788d;
    color: #fff;
  }
  
  .reset-btn:hover {
    background-color: #003366;
  }
  
  .submit-btn:hover {
    background-color: #6aa06b;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .date-input,
    .dropdown {
      width: 100%;
      margin-bottom: 10px;
    }
  
    .header {
      flex-direction: row;
    }
  
    .digit-row {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .digit-box input {
      width: 50px;
    }
  
    .button-container {
      flex-direction: column;
      gap: 10px;
    }
  }
  /* Overlay for modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  /* Modal Content Box */
  .modal-content {
    background: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
  }
  
  /* Header */
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: balck;
    padding: 10px 15px;
    border-radius: 5px 5px 0 0;
  }
  
  .modal-header h2 {
    margin: 0;
    font-size: 18px;
  }
  
  .close-btn {
    background: transparent;
    color: black;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  .child_comp{
    box-shadow: 0 2px 5px #EEEEEE;
  }

  .CONNECT_DIV{
    flex-direction: row;
    justify-content: space-evenly;
    padding-bottom: 16px;
    display: flex;
  }

  .modalHeader{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  /* Table */
  .modal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
  }
  
  .modal-table th,
  .modal-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
  }
  
  .modal-table th {
    background-color: #f2f2f2;
    font-weight: bold;
  }
  
  .note {
    color: #555;
    font-size: 12px;
    margin-top: 10px;
  }
  
  /* Footer */
  .modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
  }
  
  .bid-info p {
    margin: 0;
    font-size: 14px;
  }
  
  .bid-info span {
    font-weight: bold;
  }
  
  .footer-buttons {
    display: flex;
    gap: 10px;
  }
  
  .cancel-btn,
  .submit-btn {
    padding: 5px 15px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
  }
  
  .cancel-btn {
    background-color: #5c6978;
    color: white;
  }
  
  .submit-btn {
    background-color: #4a9a6b;
    color: white;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .modal-content {
      width: 95%;
    }
    .modal-header h2 {
      font-size: 14px;
    }
    .modal-table th,
    .modal-table td {
      font-size: 12px;
    }
  }
  .how-to-play-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }
  
  .steps-list {
    list-style-type: decimal;
    padding-left: 20px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }
  
  .steps-list li {
    margin-bottom: 15px;
  }
  
  @media (max-width: 768px) {
    .how-to-play-container {
      padding: 15px;
    }
  
    .title {
      font-size: 20px;
    }
  
    .steps-list {
      font-size: 14px;
    }
  }
  /* GameRates.css */
.game-rates-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .rates-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }
  
  .rates-table th, .rates-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
  }
  
  .rates-table th {
    background-color: #f4f4f4;
    color: #333;
  }
  
  .rates-table tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  .rates-table tr:hover {
    background-color: #f1f1f1;
  }
  
  @media (max-width: 480px) {
    .rates-table th, .rates-table td {
      padding: 8px;
      font-size: 0.9rem;
    }
  
    .title {
      font-size: 1.2rem;
    }
  }
  /* BidHistory.css */


.tbl_header{
  margin-top: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: #cd2088;
}
.tbl_button{
  background-color: #c74094e8 !important;
  border-radius: 20px;
  box-shadow: 0 0 15px 0 rgba(8, 18, 109, .1) !important;
  padding: 9px;
  border: none;
  color: white;
  cursor: pointer;
}
.tbl_head_new th {
  --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important;
    /* background-color: rgba(196, 181, 253); */
    color: black !important;
}
.bid-history-container {
  
  margin-bottom: 16% !important;
    max-width: 900px;
    margin: 20px auto;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .title {
    text-align: center;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .table-wrapper {
    overflow-x: auto;
  }
  
  .bid-history-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .bid-history-table th, .bid-history-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
  }
  
  .bid-history-table th {
    background-color: rgb(224, 18, 18);
    font-weight: bold;
    color: white;
  }
  .bid-history-table th {
    font-weight: bold;
  }

  .table_border_pana{
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-content: stretch;
    justify-content: space-around;
  }
  .star-vertical {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }

  .star-horizontal {
    display: flex;
    align-items: center; 
  }

  .table_border{
    border: 3px double gray !important;
  }
  
  .bid-history-table tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  .bid-history-table tr:hover {
    background-color: #f1f1f1;
  }
  
  @media (max-width: 768px) {
    .bid-history-table th, .bid-history-table td {
      font-size: 0.9rem;
      padding: 8px;
    }
  
    .title {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .bid-history-table th, .bid-history-table td {
      font-size: 0.8rem;
      padding: 6px;
    }
  }
  



  @import url(https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&family=Merriweather:wght@900&display=swap);body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif
}

code {
    font-family: source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace
}

.App {
    text-align: center
}

.App-logo {
    height: 40vmin;
    pointer-events: none
}

@media (prefers-reduced-motion:no-preference) {
    .App-logo {
        animation: App-logo-spin 20s linear infinite
    }
}

.App-header {
    align-items: center;
    background-color: #282c34;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: calc(10px + 2vmin);
    justify-content: center;
    min-height: 100vh
}

.App-link {
    color: #61dafb
}

.centerFlex {
    align-items: center;
    display: flex;
    justify-content: center
}

@keyframes App-logo-spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.spinner {
    animation: spin 2s linear infinite;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top-color: #3498db;
    height: 50px;
    width: 50px
}

.side_tops {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.all_bids {
    display: flex;
    flex-direction: column
}

.child_comp {
    border-radius: 16px;
    color: #251b1b;
    font-weight: 400;
    height: 50px;
    margin: 0px;
    padding: 0px;
    text-align: left
}

.child_comp,.header {
    background-color: #fff
}

.header {
    align-items: center;
    color: #673ab7;
    padding: 10px 20px
}

.menu_left {
    text-align: left;
    white-space: nowrap
}

.sidebar ul li a {
    font-size: 17px
}

.leftHeader {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 100%
}

.toggle-button {
    background: none;
    border: none;
    color: #e3155a;
    cursor: pointer;
    font-size: 24px
}

.header-title {
    font-size: 20px
}

.sidebar {
    background-color: #fff;
    color: gray;
    height: 100%;
    left: -250px;
    overflow-y: auto;
    position: fixed;
    top: 0;
    transition: left .3s ease;
    width: 250px;
    z-index: 1000
}

.sidebar.open {
    left: 0
}

.sidebar ul {
    list-style: none;
    padding: 11px
}

.name_clm,.nrwap {
    white-space: nowrap
}

.name_clm {
    color: #746767;
    font-size: medium;
    font-weight: 600
}

.sidebar ul li {
    margin: 15px 0
}

.sidebar ul li a {
    color: gray;
    font-size: 18px;
    text-decoration: none
}

.sidebar ul li a:hover {
    text-decoration: underline
}

.close-button {
    background: none;
    border: none;
    color: gray;
    cursor: pointer;
    font-size: 26px;
    padding: 10px
}

.infoblock {
    float: left
}

.content {
    margin-left: 0;
    padding: 20px;
    transition: margin-left .3s ease
}

.content.shifted {
    margin-left: 250px
}

@media (max-width: 768px) {
    .header-title {
        font-size:18px
    }

    .sidebar {
        width: 216px
    }

    .content.shifted {
        margin-left: 200px
    }

    .toggle-button {
        font-size: 20px
    }

    .sidebar ul li a {
        font-size: 16px
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size:16px
    }

    .sidebar {
        width: 216px
    }

    .content.shifted {
        margin-left: 180px
    }

    .toggle-button {
        font-size: 18px
    }

    .sidebar ul li a {
        font-size: 17px
    }
}

.sticky-footer {
    align-items: center;
    background-color: #fff;
    bottom: 0;
    color: gray;
    display: flex;
    justify-content: center;
    left: 0;
    padding: 10px 0;
    position: fixed;
    width: 100%
}

.images-icon-footer {
    max-height: 29px
}

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 600px;
    width: 100%
}

.footer-icon {
    color: gray;
    margin: 0 10px;
    text-align: center;
    text-decoration: none
}

.footer-icon:hover {
    color: red
}

.footer-icon span {
    display: block;
    font-size: .75rem;
    margin-top: 5px
}

/* Overlay for modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  /* Modal Content Box */
  .modal-content {
    background: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
  }
  
  /* Header */
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: balck;
    padding: 10px 15px;
    border-radius: 5px 5px 0 0;
  }
  
  .modal-header h2 {
    margin: 0;
    font-size: 18px;
  }
  
  .close-btn {
    background: transparent;
    color: black;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  .child_comp{
    box-shadow: 0 2px 5px #EEEEEE;
  }

  .CONNECT_DIV{
    flex-direction: row;
    justify-content: space-evenly;
    padding-bottom: 16px;
    display: flex;
  }

  .modalHeader{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  /* Table */
  .modal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
  }
  
  .modal-table th,
  .modal-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
  }
  
  .modal-table th {
    background-color: #f2f2f2;
    font-weight: bold;
  }
  
  .note {
    color: #555;
    font-size: 12px;
    margin-top: 10px;
  }
  
  /* Footer */
  .modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
  }
  
  .bid-info p {
    margin: 0;
    font-size: 14px;
  }
  
  .bid-info span {
    font-weight: bold;
  }
  
  .footer-buttons {
    display: flex;
    gap: 10px;
  }
  
  .cancel-btn,
  .submit-btn {
    padding: 5px 15px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
  }
  
  .cancel-btn {
    background-color: #5c6978;
    color: white;
  }
  
  .submit-btn {
    background-color: #4a9a6b;
    color: white;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .modal-content {
      width: 95%;
    }
    .modal-header h2 {
      font-size: 14px;
    }
    .modal-table th,
    .modal-table td {
      font-size: 12px;
    }
  }
  

.footer {
    align-items: center;
    background-color: #fff;
    box-shadow: 0 -2px 4px #0000001a;
    display: flex;
    justify-content: space-around;
    padding: 10px 0
}

.menu-item {
    color: #000;
    font-weight: 700;
    text-align: center
}

.container {
    margin-top: 4%
}

.main_title {
    font-style: normal;
    font-weight: 700;
    text-align: left
}

.title_Form {
    display: flex;
    flex-direction: row;
    justify-content: space-around
}

.Empty_data {
    color: #9e9e9e;
    font-size: 19px;
    font-weight: 600;
    margin-top: 48%
}

.game_type_box {
    border-radius: 4%;
    box-shadow: 5px 5px 5px 5px #e0e0e0;
    display: flex;
    flex-direction: column;
    height: 111px;
    justify-content: space-around;
    width: 40%;
    align-items: center;
}

.imageIcon {
    left: 34%;
    position: absolute;
    top: 26%
}

.image_div {
    border: 2px dotted gray;
    height: 252px;
    position: relative;
    margin-bottom: 30px;
}

.game_type_box_pre {
    display: flex;
    flex-direction: row;
    justify-content: space-around
}

.breakLine {
    border: 2px solid red;
    margin-left: 0%;
    width: 56%
}

.input_lable_deep {
    background: linear-gradient(180deg,#fff,#e6e6e6);
    border-radius: 25px;
    box-shadow: inset 2px 2px 4px #0003,inset -2px -2px 4px #ffffffb3,4px 4px 8px #0003;
    font-size: 16px;
    outline: none;
    padding: 12px 16px;
    transition: box-shadow .3s ease,transform .2s ease;
    width: 100%
}

.card {
    align-items: center;
    background-color: #534848;
    border-radius: 23px;
    box-shadow: 0 4px 8px #0006;
    display: flex;
    margin: 4%;
    padding: 50px
}

.icon img {
    border-radius: 50%;
    height: 85px;
    width: 85px
}

.content {
    flex: 1 1;
    margin-left: 20px
}

.content h2 {
    color: #b6bef2;
    font-family: Merriweather,serif;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 5px
}

.content p span,.openBlk {
    color: green;
    font-family: IBM Plex Sans,sans-serif;
    font-size: 14px;
    font-weight: 600
}

.text_color_red {
    color: red
}

.closeBlk,.content p {
    color: red;
    font-family: IBM Plex Sans,sans-serif;
    font-size: 14px;
    font-weight: 600
}

.actions {
    align-items: center;
    display: flex;
    flex-direction: column
}

.download-button {
    background-color: #007bff;
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-family: IBM Plex Sans,sans-serif;
    font-size: .9rem;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 20px;
    transition: background-color .3s ease
}

.disabled {
    background-color: #171b34!important
}

.download-button:hover {
    background-color: #e04386
}

.rating {
    align-items: center;
    background-color: #171b34;
    border-radius: 39px;
    color: #ecc86b;
    display: flex;
    font-size: 16px;
    margin-top: 14px;
    padding: 12px 20px
}

.rating i {
    margin-right: 3px
}

.rating .reviews {
    color: #fff;
    margin-left: 8px
}

@media (max-width: 768px) {
    .card {
        flex-direction:column;
        gap: 30px;
        padding: 30px;
        text-align: center
    }

    .content {
        margin-left: 0
    }

    .breadcrumb a,.breadcrumb i,.breadcrumb span,.content p {
        font-size: 14px
    }

    .download-button {
        font-size: 16px;
        padding: 12px 16px
    }

    .rating {
        font-size: 14px;
        margin-top: 12px;
        padding: 10px 16px
    }
}

.modal-overlay {
    align-items: center;
    background: #00000080;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000
}

.modal-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px #0003;
    max-width: 600px;
    padding: 20px;
    width: 90%
}

.modal-header {
    align-items: center;
    border-radius: 5px 5px 0 0;
    color: balck;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px
}

.modal-header h2 {
    font-size: 18px;
    margin: 0
}

.close-btn {
    background: #0000;
    border: none;
    color: #000;
    cursor: pointer;
    font-size: 20px
}

.child_comp {
    box-shadow: 0 2px 5px #eee
}

.CONNECT_DIV {
    justify-content: space-evenly;
    padding-bottom: 16px
}

.CONNECT_DIV,.modalHeader {
    display: flex;
    flex-direction: row
}

.modalHeader {
    justify-content: space-between
}

.modal-table {
    border-collapse: collapse;
    margin-top: 15px;
    width: 100%
}

.modal-table td,.modal-table th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center
}

.modal-table th {
    background-color: #f2f2f2;
    font-weight: 700
}

.note {
    color: #555;
    font-size: 12px;
    margin-top: 10px
}

.modal-footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 15px
}

.bid-info p {
    font-size: 14px;
    margin: 0
}

.bid-info span {
    font-weight: 700
}

.footer-buttons {
    display: flex;
    gap: 10px
}

.cancel-btn,.submit-btn {
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    padding: 5px 15px
}

.cancel-btn {
    background-color: #5c6978;
    color: #fff
}

.submit-btn {
    background-color: #4a9a6b
}

@media (max-width: 600px) {
    .modal-content {
        width:95%
    }

    .modal-header h2 {
        font-size: 14px
    }

    .modal-table td,.modal-table th {
        font-size: 12px
    }
}

body {
    box-sizing: border-box;
    font-family: Arial,sans-serif;
    margin: 0;
    padding: 0
}

.form-container {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px #0000001a;
    margin: 20px auto;
    max-width: 500px;
    padding: 20px
}

h2 {
    margin-bottom: 20px;
    text-align: center
}

.form-group {
    margin-bottom: 15px
}

label {
    display: block
}

input {
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    width: 100%
}

input:focus {
    border-color: #007bff
}

.error {
    color: red;
    font-size: 12px;
    margin-top: 5px
}

.submit-btn {
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    padding: 10px;
    width: 100%
}

.submit-btn:hover {
    background-color: #0056b3
}

@media (max-width: 768px) {
    .form-container {
        margin:10px;
        padding: 15px
    }

    input {
        font-size: 12px;
        padding: 8px
    }

    .submit-btn {
        font-size: 14px;
        padding: 8px
    }
}

@media (max-width: 480px) {
    h2 {
        font-size:18px
    }

    .form-container {
        padding: 10px
    }

    input {
        font-size: 12px;
        padding: 6px
    }

    .submit-btn {
        font-size: 14px;
        padding: 6px
    }
}

.privacy-policy-container {
    align-items: center;
    background-color: #f9f9f9;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 20px
}

.privacy-policy {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px #0000001a;
    max-width: 800px;
    padding: 20px;
    width: 100%
}

.privacy-policy h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center
}

.privacy-policy h2 {
    color: #444;
    font-size: 1.5rem;
    margin-top: 20px
}

.privacy-policy p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px
}

.privacy-policy ul {
    list-style: disc;
    margin-bottom: 15px;
    margin-left: 20px
}

.privacy-policy a {
    color: #007bff;
    text-decoration: none
}

.privacy-policy a:hover {
    text-decoration: underline
}

@media (max-width: 768px) {
    .privacy-policy h1 {
        font-size:1.75rem
    }

    .privacy-policy h2 {
        font-size: 1.25rem
    }

    .privacy-policy p {
        font-size: .95rem
    }

    .privacy-policy {
        padding: 15px
    }
}

.tbl_header {
    --tw-text-opacity: 1;
    color: #cd2088;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75rem;
    margin-top: 1.25rem
}

.tbl_button {
    background-color: #c74094e8!important;
    border: none;
    border-radius: 20px;
    box-shadow: 0 0 15px 0 #08126d1a!important;
    color: #fff;
    cursor: pointer;
    padding: 9px
}

.tbl_head_new th {
    --tw-bg-opacity: 1!important;
    background-color: rgba(196,181,253,var(--tw-bg-opacity))!important;
    color: #000!important
}

.bid-history-container {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px #0000001a;
    margin-bottom: 16%!important;
    margin: 20px auto;
    max-width: 900px;
    padding: 15px
}

.table-wrapper {
    overflow-x: auto
}

.bid-history-table {
    border-collapse: collapse;
    width: 100%
}

.bid-history-table td,.bid-history-table th {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left
}

.bid-history-table th {
    background-color: #e01212;
    color: #fff;
    font-weight: 700
}

.table_border_pana {
    align-content: stretch;
    display: flex;
    flex-direction: row;
    font-weight: 500;
    justify-content: space-around
}

.star-vertical {
    text-orientation: upright;
    writing-mode: vertical-rl
}

.star-horizontal {
    align-items: center;
    display: flex
}

.table_border {
    border: 3px double gray!important
}

.bid-history-table tr:nth-child(2n) {
    background-color: #f9f9f9
}

.bid-history-table tr:hover {
    background-color: #f1f1f1
}

@media (max-width: 768px) {
    .bid-history-table td,.bid-history-table th {
        font-size:.9rem;
        padding: 8px
    }

    .title {
        font-size: 1.2rem
    }
}

@media (max-width: 480px) {
    .bid-history-table td,.bid-history-table th {
        font-size:.8rem;
        padding: 6px
    }
}

:root {
    --toastify-color-light: #fff;
    --toastify-color-dark: #121212;
    --toastify-color-info: #3498db;
    --toastify-color-success: #07bc0c;
    --toastify-color-warning: #f1c40f;
    --toastify-color-error: #e74c3c;
    --toastify-color-transparent: #ffffffb3;
    --toastify-icon-color-info: var(--toastify-color-info);
    --toastify-icon-color-success: var(--toastify-color-success);
    --toastify-icon-color-warning: var(--toastify-color-warning);
    --toastify-icon-color-error: var(--toastify-color-error);
    --toastify-toast-width: 320px;
    --toastify-toast-offset: 16px;
    --toastify-toast-top: max(var(--toastify-toast-offset),env(safe-area-inset-top));
    --toastify-toast-right: max(var(--toastify-toast-offset),env(safe-area-inset-right));
    --toastify-toast-left: max(var(--toastify-toast-offset),env(safe-area-inset-left));
    --toastify-toast-bottom: max(var(--toastify-toast-offset),env(safe-area-inset-bottom));
    --toastify-toast-background: #fff;
    --toastify-toast-min-height: 64px;
    --toastify-toast-max-height: 800px;
    --toastify-toast-bd-radius: 6px;
    --toastify-font-family: sans-serif;
    --toastify-z-index: 9999;
    --toastify-text-color-light: #757575;
    --toastify-text-color-dark: #fff;
    --toastify-text-color-info: #fff;
    --toastify-text-color-success: #fff;
    --toastify-text-color-warning: #fff;
    --toastify-text-color-error: #fff;
    --toastify-spinner-color: #616161;
    --toastify-spinner-color-empty-area: #e0e0e0;
    --toastify-color-progress-light: linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);
    --toastify-color-progress-dark: #bb86fc;
    --toastify-color-progress-info: var(--toastify-color-info);
    --toastify-color-progress-success: var(--toastify-color-success);
    --toastify-color-progress-warning: var(--toastify-color-warning);
    --toastify-color-progress-error: var(--toastify-color-error);
    --toastify-color-progress-bgo: 0.2
}

.Toastify__toast-container {
    box-sizing: border-box;
    color: #fff;
    padding: 4px;
    position: fixed;
    -webkit-transform: translateZ(9999);
    -webkit-transform: translateZ(var(--toastify-z-index));
    width: 320px;
    width: var(--toastify-toast-width);
    z-index: 9999;
    z-index: var(--toastify-z-index)
}

.Toastify__toast-container--top-left {
    left: max(16px,env(safe-area-inset-left));
    left: var(--toastify-toast-left);
    top: max(16px,env(safe-area-inset-top));
    top: var(--toastify-toast-top)
}

.Toastify__toast-container--top-center {
    left: 50%;
    top: max(16px,env(safe-area-inset-top));
    top: var(--toastify-toast-top);
    transform: translateX(-50%)
}

.Toastify__toast-container--top-right {
    right: max(16px,env(safe-area-inset-right));
    right: var(--toastify-toast-right);
    top: max(16px,env(safe-area-inset-top));
    top: var(--toastify-toast-top)
}

.Toastify__toast-container--bottom-left {
    bottom: max(16px,env(safe-area-inset-bottom));
    bottom: var(--toastify-toast-bottom);
    left: max(16px,env(safe-area-inset-left));
    left: var(--toastify-toast-left)
}

.Toastify__toast-container--bottom-center {
    bottom: max(16px,env(safe-area-inset-bottom));
    bottom: var(--toastify-toast-bottom);
    left: 50%;
    transform: translateX(-50%)
}

.Toastify__toast-container--bottom-right {
    bottom: max(16px,env(safe-area-inset-bottom));
    bottom: var(--toastify-toast-bottom);
    right: max(16px,env(safe-area-inset-right));
    right: var(--toastify-toast-right)
}

@media only screen and (max-width: 480px) {
    .Toastify__toast-container {
        left:env(safe-area-inset-left);
        margin: 0;
        padding: 0;
        width: 100vw
    }

    .Toastify__toast-container--top-center,.Toastify__toast-container--top-left,.Toastify__toast-container--top-right {
        top: env(safe-area-inset-top);
        transform: translateX(0)
    }

    .Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-right {
        bottom: env(safe-area-inset-bottom);
        transform: translateX(0)
    }

    .Toastify__toast-container--rtl {
        left: auto;
        right: env(safe-area-inset-right)
    }
}

.Toastify__toast {
    --y: 0;
    border-radius: 6px;
    border-radius: var(--toastify-toast-bd-radius);
    box-shadow: 0 4px 12px #0000001a;
    box-sizing: border-box;
    cursor: default;
    direction: ltr;
    display: flex;
    font-family: sans-serif;
    font-family: var(--toastify-font-family);
    justify-content: space-between;
    margin-bottom: 1rem;
    max-height: 800px;
    max-height: var(--toastify-toast-max-height);
    min-height: 64px;
    min-height: var(--toastify-toast-min-height);
    overflow: hidden;
    padding: 8px;
    position: relative;
    touch-action: none;
    z-index: 0
}

.Toastify__toast--stacked {
    position: absolute;
    transform: translate3d(0,var(--y),0) scale(var(--s));
    transition: transform .3s;
    width: 100%
}

.Toastify__toast--stacked[data-collapsed] .Toastify__close-button,.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body {
    transition: opacity .1s
}

.Toastify__toast--stacked[data-collapsed=false] {
    overflow: visible
}

.Toastify__toast--stacked[data-collapsed=true]:not(:last-child)>* {
    opacity: 0
}

.Toastify__toast--stacked:after {
    bottom: 100%;
    content: "";
    height: calc(var(--g)*1px);
    left: 0;
    position: absolute;
    right: 0
}

.Toastify__toast--stacked[data-pos=top] {
    top: 0
}

.Toastify__toast--stacked[data-pos=bot] {
    bottom: 0
}

.Toastify__toast--stacked[data-pos=bot].Toastify__toast--stacked:before {
    transform-origin: top
}

.Toastify__toast--stacked[data-pos=top].Toastify__toast--stacked:before {
    transform-origin: bottom
}

.Toastify__toast--stacked:before {
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    transform: scaleY(3);
    z-index: -1
}

.Toastify__toast--rtl {
    direction: rtl
}

.Toastify__toast--close-on-click {
    cursor: pointer
}

.Toastify__toast-body {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    margin: auto 0;
    padding: 6px
}

.Toastify__toast-body>div:last-child {
    flex: 1 1;
    word-break: break-word
}

.Toastify__toast-icon {
    display: flex;
    flex-shrink: 0;
    margin-inline-end:10px;width: 20px
}

.Toastify--animate {
    animation-duration: .5s;
    animation-fill-mode: both
}

.Toastify--animate-icon {
    animation-duration: .3s;
    animation-fill-mode: both
}

@media only screen and (max-width: 480px) {
    .Toastify__toast {
        border-radius:0;
        margin-bottom: 0
    }
}

.Toastify__toast-theme--dark {
    background: #121212;
    background: var(--toastify-color-dark);
    color: #fff;
    color: var(--toastify-text-color-dark)
}

.Toastify__toast-theme--colored.Toastify__toast--default,.Toastify__toast-theme--light {
    background: #fff;
    background: var(--toastify-color-light);
    color: #757575;
    color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info {
    background: #3498db;
    background: var(--toastify-color-info);
    color: #fff;
    color: var(--toastify-text-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success {
    background: #07bc0c;
    background: var(--toastify-color-success);
    color: #fff;
    color: var(--toastify-text-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
    background: #f1c40f;
    background: var(--toastify-color-warning);
    color: #fff;
    color: var(--toastify-text-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error {
    background: #e74c3c;
    background: var(--toastify-color-error);
    color: #fff;
    color: var(--toastify-text-color-error)
}

.Toastify__progress-bar-theme--light {
    background: linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);
    background: var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark {
    background: #bb86fc;
    background: var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info {
    background: #3498db;
    background: var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success {
    background: #07bc0c;
    background: var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning {
    background: #f1c40f;
    background: var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error {
    background: #e74c3c;
    background: var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
    background: #ffffffb3;
    background: var(--toastify-color-transparent)
}

.Toastify__close-button {
    align-self: flex-start;
    background: #0000;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: .7;
    outline: none;
    padding: 0;
    transition: .3s ease;
    z-index: 1
}

.Toastify__close-button--light {
    color: #000;
    opacity: .3
}

.Toastify__close-button>svg {
    fill: currentColor;
    height: 16px;
    width: 14px
}

.Toastify__close-button:focus,.Toastify__close-button:hover {
    opacity: 1
}

@keyframes Toastify__trackProgress {
    0% {
        transform: scaleX(1)
    }

    to {
        transform: scaleX(0)
    }
}

.Toastify__progress-bar {
    border-bottom-left-radius: 6px;
    border-bottom-left-radius: var(--toastify-toast-bd-radius);
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: .7;
    position: absolute;
    transform-origin: left;
    width: 100%;
    z-index: 9999;
    z-index: var(--toastify-z-index)
}

.Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
    transition: transform .2s
}

.Toastify__progress-bar--rtl {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 6px;
    border-bottom-right-radius: var(--toastify-toast-bd-radius);
    left: auto;
    right: 0;
    transform-origin: right
}

.Toastify__progress-bar--wrp {
    border-bottom-left-radius: 6px;
    border-bottom-left-radius: var(--toastify-toast-bd-radius);
    bottom: 0;
    height: 5px;
    left: 0;
    position: absolute;
    width: 100%
}

.Toastify__progress-bar--wrp[data-hidden=true] {
    opacity: 0
}

.Toastify__progress-bar--bg {
    height: 100%;
    opacity: .2;
    opacity: var(--toastify-color-progress-bgo);
    width: 100%
}

.Toastify__spinner {
    animation: Toastify__spin .65s linear infinite;
    border: 2px solid #e0e0e0;
    border-color: var(--toastify-spinner-color-empty-area);
    border-radius: 100%;
    border-right-color: #616161;
    border-right-color: var(--toastify-spinner-color);
    box-sizing: border-box;
    height: 20px;
    width: 20px
}

@keyframes Toastify__bounceInRight {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px,0,0)
    }

    75% {
        transform: translate3d(10px,0,0)
    }

    90% {
        transform: translate3d(-5px,0,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px,var(--y),0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,var(--y),0)
    }
}

@keyframes Toastify__bounceInLeft {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px,0,0)
    }

    75% {
        transform: translate3d(-10px,0,0)
    }

    90% {
        transform: translate3d(5px,0,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px,var(--y),0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,var(--y),0)
    }
}

@keyframes Toastify__bounceInUp {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    75% {
        transform: translate3d(0,10px,0)
    }

    90% {
        transform: translate3d(0,-5px,0)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__bounceOutUp {
    20% {
        transform: translate3d(0,calc(var(--y) - 10px),0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,calc(var(--y) + 20px),0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

@keyframes Toastify__bounceInDown {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,-3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,25px,0)
    }

    75% {
        transform: translate3d(0,-10px,0)
    }

    90% {
        transform: translate3d(0,5px,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutDown {
    20% {
        transform: translate3d(0,calc(var(--y) - 10px),0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,calc(var(--y) + 20px),0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.Toastify__bounce-enter--bottom-left,.Toastify__bounce-enter--top-left {
    animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right,.Toastify__bounce-enter--top-right {
    animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
    animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
    animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left,.Toastify__bounce-exit--top-left {
    animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right,.Toastify__bounce-exit--top-right {
    animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
    animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
    animation-name: Toastify__bounceOutDown
}

@keyframes Toastify__zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes Toastify__zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: translate3d(0,var(--y),0) scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

.Toastify__zoom-enter {
    animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
    animation-name: Toastify__zoomOut
}

@keyframes Toastify__flipIn {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        opacity: 1;
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes Toastify__flipOut {
    0% {
        transform: translate3d(0,var(--y),0) perspective(400px)
    }

    30% {
        opacity: 1;
        transform: translate3d(0,var(--y),0) perspective(400px) rotateX(-20deg)
    }

    to {
        opacity: 0;
        transform: translate3d(0,var(--y),0) perspective(400px) rotateX(90deg)
    }
}

.Toastify__flip-enter {
    animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
    animation-name: Toastify__flipOut
}

@keyframes Toastify__slideInRight {
    0% {
        transform: translate3d(110%,0,0);
        visibility: visible
    }

    to {
        transform: translate3d(0,var(--y),0)
    }
}

@keyframes Toastify__slideInLeft {
    0% {
        transform: translate3d(-110%,0,0);
        visibility: visible
    }

    to {
        transform: translate3d(0,var(--y),0)
    }
}

@keyframes Toastify__slideInUp {
    0% {
        transform: translate3d(0,110%,0);
        visibility: visible
    }

    to {
        transform: translate3d(0,var(--y),0)
    }
}

@keyframes Toastify__slideInDown {
    0% {
        transform: translate3d(0,-110%,0);
        visibility: visible
    }

    to {
        transform: translate3d(0,var(--y),0)
    }
}

@keyframes Toastify__slideOutRight {
    0% {
        transform: translate3d(0,var(--y),0)
    }

    to {
        transform: translate3d(110%,var(--y),0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutLeft {
    0% {
        transform: translate3d(0,var(--y),0)
    }

    to {
        transform: translate3d(-110%,var(--y),0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutDown {
    0% {
        transform: translate3d(0,var(--y),0)
    }

    to {
        transform: translate3d(0,500px,0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutUp {
    0% {
        transform: translate3d(0,var(--y),0)
    }

    to {
        transform: translate3d(0,-500px,0);
        visibility: hidden
    }
}

.Toastify__slide-enter--bottom-left,.Toastify__slide-enter--top-left {
    animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right,.Toastify__slide-enter--top-right {
    animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
    animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
    animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left,.Toastify__slide-exit--top-left {
    animation-duration: .3s;
    animation-name: Toastify__slideOutLeft;
    animation-timing-function: ease-in
}

.Toastify__slide-exit--bottom-right,.Toastify__slide-exit--top-right {
    animation-duration: .3s;
    animation-name: Toastify__slideOutRight;
    animation-timing-function: ease-in
}

.Toastify__slide-exit--top-center {
    animation-duration: .3s;
    animation-name: Toastify__slideOutUp;
    animation-timing-function: ease-in
}

.Toastify__slide-exit--bottom-center {
    animation-duration: .3s;
    animation-name: Toastify__slideOutDown;
    animation-timing-function: ease-in
}

@keyframes Toastify__spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.how-to-play-container {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px #0000001a;
    margin: 0 auto;
    max-width: 600px;
    padding: 20px
}

.title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px
}

.steps-list {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    list-style-type: decimal;
    padding-left: 20px
}

.steps-list li {
    margin-bottom: 15px
}

@media (max-width: 768px) {
    .how-to-play-container {
        padding:15px
    }

    .title {
        font-size: 20px
    }

    .steps-list {
        font-size: 14px
    }
}

.game-rates-container {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px #0000001a;
    margin: 20px auto;
    max-width: 600px;
    padding: 10px
}

.title {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center
}

.rates-table {
    border-collapse: collapse;
    margin-top: 10px;
    width: 100%
}

.rates-table td,.rates-table th {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left
}

.rates-table th {
    background-color: #f4f4f4;
    color: #333
}

.rates-table tr:nth-child(2n) {
    background-color: #f9f9f9
}

.rates-table tr:hover {
    background-color: #f1f1f1
}

@media (max-width: 480px) {
    .rates-table td,.rates-table th {
        font-size:.9rem;
        padding: 8px
    }

    .title {
        font-size: 1.2rem
    }
}

.scanner-image {
    max-width: -webkit-fill-available
}

.payment-container {
    margin-bottom: 16%;
    padding: 6%
}

.container {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 6%
}

.frosted {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: #fff9;
    box-shadow: 0 4px 6px #0000001a;
    margin-bottom: 20px;
    max-width: 400px;
    padding: 20px;
    text-align: center
}

.frosted,.frosted img {
    border-radius: 10px;
    width: 100%
}

.frosted img {
    max-width: 200px
}

.payment-details {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px #0000001a;
    margin-bottom: 20px;
    max-width: 400px;
    padding: 20px;
    width: 100%
}

.payment-details h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px
}

.payment-details p {
    font-size: 16px;
    margin: 5px 0
}

.payment-details button {
    background: #007bff;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    padding: 8px 16px
}

.payment-details button:hover {
    background: #0056b3
}

.payment-form {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px #0000001a;
    max-width: 400px;
    padding: 20px;
    width: 100%
}

.payment-form h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px
}

.payment-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px
}

.payment-form input {
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
    padding: 10px;
    width: 100%
}

.payment-form button {
    background: #28a745;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
    width: 100%
}

.payment-form button:hover {
    background: #218838
}

@media (max-width: 768px) {
    .container {
        padding:10px
    }

    .frosted,.payment-details,.payment-form {
        padding: 15px;
        width: 100%
    }
}

.container {
    font-family: Arial,sans-serif;
    margin: 0 auto;
    max-width: 800px
}

.topsss {
    margin-top: 11%
}

.form-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px
}

.date-picker {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px
}

.change-btn {
    background-color: #6aa06b;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    padding: 10px 15px
}

.form-body {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px
}

.form-group {
    display: flex;
    flex: 1 1;
    flex-direction: column;
    min-width: 200px
}

label {
    font-weight: 700;
    margin-bottom: 5px
}

input {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px
}

.btn {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    padding: 10px 15px
}

.add-btn {
    color: #fff
}

.add-btn,.submit-btn {
    background-color: #6aa06b
}

.submit-btn {
    display: block;
    margin: 20px auto 0
}

.table-container {
    border-top: 1px solid #ddd;
    margin-top: 20px
}

.table-header,.table-row {
    display: flex;
    justify-content: space-between;
    padding: 10px
}

.table-header {
    background-color: #f2f2f2;
    font-weight: 700
}

.table-row {
    border-bottom: 1px solid #ddd
}

.table-row div {
    flex: 1 1;
    text-align: center
}

.delete-btn {
    background: none;
    border: none;
    color: red;
    cursor: pointer;
    font-size: 16px
}

@media (max-width: 600px) {
    .form-body {
        flex-direction:column
    }

    .table-header,.table-row {
        flex-direction: column;
        text-align: left
    }

    .table-row div {
        margin: 5px 0
    }
}

* {
    box-sizing: border-box;
    font-family: Nunito,sans-serif;
    margin: 0;
    padding: 0
}

body {
    background-color: #f8f8f8;
    color: #333
}

.container {
    background-color: #fffdd087;
    border-radius: 10px;
    box-shadow: 0 0 10px #0000001a;
    margin: 20px auto;
    max-width: 1000px;
    padding: 20px
}

.header {
    display: flex
}

.date-input,.dropdown {
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    padding: 10px;
    width: 48%!important;
}

.section-title {
    font-weight: 700;
    margin: 15px 0;
    text-align: center
}

.points-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px
}

.point-btn {
    background-color: #e0e0e0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all .3s ease
}

.point-btn.selected,.point-btn:hover {
    background-color: #6aa06b;
    color: #fff
}

.digits-section {
    flex-direction: row;
    padding-left: 4%
}

.digit-row,.digits-section {
    display: flex;
    justify-content: center
}

.digit-row {
    gap: 15px;
    margin-bottom: 15px
}

.modal_button {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%
}

.table_header_bid {
    display: flex;
    flex-direction: row;
    font-weight: 600;
    justify-content: space-evenly
}

.table_content_bid {
    box-shadow: 5px 5px 5px 5px #eee;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 4%
}

.digit-box {
    align-items: center;
    border-radius: 10%;
    box-shadow: 5px 5px 5px 5px #e0e0e0;
    display: flex;
    flex-direction: column;
    height: 46px;
    position: relative;
    width: 23%
}

.digit-box label {
    bottom: 0;
    color: #757575;
    font-size: 20px;
    font-weight: 600;
    position: absolute
}

.digit-box input {
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    height: 30px;
    text-align: center;
    width: 60px
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px
}

.reset-btn,.submit-btn {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all .3s ease
}

.button_container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 4%
}

.footerBid {
    display: flex;
    flex-direction: column
}

.footerBid_span {
    color: red
}

.reset-btn {
    background-color: #001f4d;
    color: #fff
}

.submit-btn {
    background-color: #a3788d;
    color: #fff
}

.reset-btn:hover {
    background-color: #036
}

.submit-btn:hover {
    background-color: #6aa06b
}

@media (max-width: 768px) {
    .date-input,.dropdown {
        margin-bottom:10px;
        width: 100%
    }

    .header {
        flex-direction: row
    }

    .digit-row {
        flex-wrap: wrap;
        justify-content: center
    }

    .digit-box input {
        width: 50px
    }

    .button-container {
        flex-direction: column;
        gap: 10px
    }
}

.bodyDiv {
    align-items: center;
    background-color: #f9f9f9;
    display: flex;
    font-family: Arial,sans-serif;
    justify-content: center;
    margin: 0
}

.signin-link {
    color: #6c757d;
    font-size: 14px;
    margin-top: 6px
}

.signin-link a {
    color: #e63946;
    text-decoration: none
}

.signin-link a:hover {
    text-decoration: underline
}

.mpin-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px #0000001a;
    padding: 30px;
    text-align: center;
    width: 360px
}

.header {
    margin-bottom: 20px;
    text-align: left
}

.back-link {
    color: #e63946;
    font-size: 14px;
    text-decoration: none
}

.back-link:hover {
    text-decoration: underline
}

.mpin-container h1 {
    color: #e63946;
    font-size: 24px;
    margin-bottom: 5px
}

.mpin-container p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 25px
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
    position: relative;
}

.input-group label {
    color: #6c757d;
    display: block;
    font-size: 14px;
    margin-bottom: 10px
}

.mpin-input {
    display: flex;
    justify-content: space-between
}

.mpin-field {
    position: relative
}

.mpin-field input {
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 18px;
    height: 40px;
    outline: none;
    text-align: center;
    width: 40px
}

.mpin-field input:focus {
    border-color: #e63946
}

.toggle-visibility {
    color: #aaa;
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%)
}

.toggle-visibility:hover {
    color: #e63946
}

.generate-mpin-button {
    background-color: #e63946;
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 6px #e639464d;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    padding: 12px;
    width: 100%
}

.generate-mpin-button:hover {
    background-color: #d63031
}

@media (max-width: 480px) {
    .mpin-container {
        border-radius:0;
        height: 100vh;
        padding: 20px;
        width: 100%
    }

    .mpin-container h1 {
        font-size: 20px
    }

    .mpin-container p {
        font-size: 12px
    }

    .mpin-field input {
        font-size: 16px;
        height: 35px;
        width: 35px
    }

    .generate-mpin-button {
        font-size: 14px;
        padding: 10px
    }
}


 .logo {
         font-size: 20px;
         font-weight: bold;
         }
         .search-bar {
         width: 250px; /* Adjust width as needed */
         border-radius: 5px;
         box-shadow: 0 2px 5px #BDBDBD;
         width: 93%;
         margin-left: 4%;
         margin-bottom: 4%;
         border-radius: 16px;
         }
         .search-bar  {
         color: black;
         font-weight: 600;
         font-size: 16px;
         padding: 8px;
         font-family: inherit;
         border: none;
         outline: none;
         border-radius: 13px;
         border-left: 3px solid red;
         }
         .nav-icons {
         display: flex;
         align-items: center;
         }
         .times{
         display: flex;
         }
         .times_contact{
         display: flex;
         flex-direction: row;
         justify-content: space-around;
         }
         .game_card_left{
         width: 70%;
         }
         .game_card_right{
         width: 30%;
         text-align: right;
         }
         .game_card_left_time{
         width: 50%;
         }
         .game_card_right_time{
         width: 50%;
         text-align: right;
         }
         .nav-icon {
         margin-left: 10px;
         font-size: 20px;
         }
         .content-container {
         padding: 20px;
         }
         .game-card {
         background-color: #fff;
         padding: 15px;
         margin-bottom: 15px;
         border-radius: 9px;
         box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
         display: flex;
         flex-direction: row;
         }
         .game-name {
         text-align: left;
         font-size: 16px;
         font-weight: bold;
         margin-bottom: 5px;
         color: #333; /* Adjust color as needed */
         }
         .game-details {
         display: flex;
         justify-content: space-between;
         margin-bottom: 10px;
         color: #666; /* Adjust color as needed */
         }
         .game-status {
         font-size: 14px;
         color: red;
         margin-bottom: 10px;
         }
         .game-actions {
         display: flex;
         justify-content: space-between;
         }
         .game-icon {
         margin-right: 10px;
         font-size: 20px;
         }
         /* Button Styles (adjust as needed) */
         .play-button {
         background-color: #007bff;
         color: #fff;
         padding: 5px 10px;
         border-radius: 3px;
         border: none;
         cursor: pointer;
         }
         .calendar-icon {
         color: #333; /* Adjust color as needed */
         }

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.side_tops{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

body {
  font-family: Arial, sans-serif;
}

.all_bids{
display: flex;
flex-direction: column;
}

.child_comp {
    border-radius: 16px;
    background-color: white;
    color: #251b1b;
    height: 50px;
    font-size: 15px;
    font-weight: bold;
    margin: 2px;
    padding: 2px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Header Styles */
.header {
  background-color: #fff;
  color: #673AB7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.menu_left{
  text-align: left;
    white-space: nowrap;
}
.sidebar ul li a{
  font-size: 17px;
}
.leftHeader{
  width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.toggle-button {
  background: none;
  border: none;
  color: #e3155a;
  font-size: 24px;
  cursor: pointer;
}

.header-title {
  font-size: 20px;
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px; /* Hidden by default */
  width: 250px;
  height: 100%;
  background-color:white ;
  color: gray;
  overflow-y: auto;
  transition: left 0.3s ease; /* Smooth opening */
  z-index: 1000;
}

.sidebar.open {
  left: 0; /* Slide in when open */
}

.sidebar ul {
  list-style: none;
  padding: 11px;

}
.nrwap{
  white-space:nowrap;
}
.name_clm{
    font-size: medium;
    font-weight: 600;
    color: #746767;
    white-space: nowrap;
}

.sidebar ul li {
  margin: 15px 0;
}

.sidebar ul li a {
  color: gray;
  text-decoration: none;
  font-size: 18px;
}

.sidebar ul li a:hover {
  text-decoration: underline;
}

/* Close Button */
.close-button {
  background: none;
  border: none;
  color: gray;
  font-size: 26px;
  cursor: pointer;
  padding: 10px;
}
.infoblock{
  float: left;
}

/* Main Content */
.content {
  padding: 20px;
  margin-left: 0;
  transition: margin-left 0.3s ease; /* Smooth content adjustment */
}

.content.shifted {
  margin-left: 250px; /* Adjust when sidebar is open */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .header-title {
    font-size: 18px; /* Smaller title on small screens */
  }

  .sidebar {
    width: 216px; /* Reduce sidebar width */
  }

  .content.shifted {
    margin-left: 200px; /* Adjust margin for smaller sidebar */
  }

  .toggle-button {
    font-size: 20px; /* Adjust toggle button size */
  }

  .sidebar ul li a {
    font-size: 16px; /* Adjust font size for smaller screens */
  }
}

@media (max-width: 480px) {
  .header-title {
    font-size: 16px;
  }

  .sidebar {
    width: 250px;
  }

  .content.shifted {
    margin-left: 180px;
  }

  .toggle-button {
    font-size: 18px;
  }

 .sidebar ul li a {
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 6px;
}
}

.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    color: gray;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
  }
  
  .images-icon-footer{
    max-height: 29px;
  }
  .footer-content {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 600px;
  }
  
  .footer-icon {
    text-align: center;
    color: gray;
    text-decoration: none;
    /* margin: 0 10px; */
  }
  
  .footer-icon:hover {
    color: red; /* Change color on hover */
  }
  
  .footer-icon span {
    display: block;
    font-size: 0.75rem;
    margin-top: 5px;
  }
  .footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: white;
  padding: 10px 0;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}
.menu-item {
  text-align: center;
  color: black;
  font-weight: bold;
}


/* custom addition css */

.game_card_right svg,
.times_contact svg {
    width: 25px;
}

.times_contact div {
    display: flex;
    align-items: center;
    gap: 2px;
}

span {
    font-size: 14px;
}

.game-inner{
 display: inline-flex; 
 justify-content: center;
  align-items: center;
   border: 2px solid rgb(134, 191, 0); 
   border-radius: 50%;
    padding: 11px;
     box-shadow: rgb(250, 250, 250) 5px 5px 5px;
}

.beakline{
  border: 1.4px solid rgb(243, 75, 78);
}

.game-inner svg {
    height: 30px;
}

.continue-button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    color: #fff;
    background-color: #e63946;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(230, 57, 70, 0.3);
}

.header h4{
  display: flex;
  gap: 10px;
}

.header h4 span{
  font-size: 21px;
  font-weight: bold;
  color: #5cc601;
}

.wall-ic{
  height: 30px;
  width: 30px;
  border-radius: 50%;
  padding: 7px;
  background: red;
}

.sidebar.slide{
  left: 0px!important;
}

.profile-pic svg {
    width: 40px;
    height: 40px;
    padding: 10px;
    background: antiquewhite;
    border-radius: 50%;
    margin-right: 10px;
}

ul.menu_left li a svg {
    width: 30px;
    height: 30px;
    background: red;
    padding: 5px;
    border-radius: 50%;
}

#open{
  width: 46%; 
  box-shadow: rgb(189, 189, 189) 5px 5px 5px;
  margin-left: auto;
}

.sub-child_comp svg {
    width: 17px;
}

h3 svg {
    width: 12px!important;
}

.input-group svg {
    width: 25px;
    position: absolute;
    right: 20px;
    top: 12px;
}

.image_div svg {
    width: 125px;
}

.chose {
    position: relative;
    height: 100%;
}

.play-ic svg path {
    fill: lightgreen;
}

/* Button Styling */
#openPopup {
  border: none;
  cursor: pointer;
}

/* Popup Styling */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    max-width: 400px;
    width: 85%;
    text-align: center;
    position: relative;
    margin: auto;
    top: 30%;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.pop-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.child_comp svg {
    width: 10px;
}

.jodi-chrt{
  text-align: center;
}

a .generate-mpin-button{
  width: 50%!important;
  margin:20px auto;
}

.title_right svg {
    width: 40px;
}

.back-link {
    display: flex;
    justify-content: flex-start;
    width: 260px;
    align-items: center;
    font-weight: bold;
}

.toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #28a745;
    color: white;
    text-align: center;
    border-radius: 5px;
    padding: 12px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
}
.toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}
.toast.error {
    background-color: #dc3545;
}
#app-loader
{
  display: none;
}
/* Loader*/
.loader-overlay{
    position:fixed; inset:0;
    display:grid; place-items:center;
    background:rgba(0,0,0,.35);
    z-index:9999;
    backdrop-filter:blur(1px);
  }
  .loader{
    width:64px; height:64px;
    border-radius:50%;
    border:4px solid rgba(255,0,0,.25);
    border-top-color:#e60000; /* red */
    animation:spin 1s linear infinite;
    box-shadow:0 0 0 2px rgba(255,0,0,.1) inset;
  }
  @keyframes spin{to{transform:rotate(360deg)}}