.dashboard-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
  }
  
  /* Navbar */
  .dashboard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5;
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
  }
  
  .dashboard-nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .dashboard-nav-user {
    font-size: 1rem;
    color: #333;
  }
  
  /* Sidebar */
  .dashboard-main {
    display: flex;
    flex: 1;
  }
  
  .dashboard-sidebar {
    background-color: #f5f5f5;
    width: 200px;
    padding: 20px;
    border-right: 1px solid #ccc;
  }
  
  .dashboard-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .dashboard-menu-item {
    margin-bottom: 15px;
    font-size: 1.3rem;
    cursor: pointer;
    color: #333;
  }
  .dashboard-menu-item a{
    color: #333;
    text-decoration: none;
  }
  
  .dashboard-menu-item.active {
    font-weight: bold;
    color: #000;
  }
  
  /* Content */
  .dashboard-content {
    flex: 1;
    background-color: #e0e0e0;
    padding: 20px;
    overflow: auto!important;
  }
  
  .dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .dashboard-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .dashboard-card h3 {
    margin: 0;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .dashboard-card p {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
  }
  


  /* ========================================================
  ============================Table=================================
  ============================================================= */
  /* General Styles */
  
  .dashboard-table-container {
    margin: 0 auto;
    width: 100%;
    background-color: #ccc;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
  }
  
  /* Table Styles */
  .dashboard-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #d6d6d6;
    overflow: auto;
  }

  .dashboard-table-wrapper {
    width: 100%;
    height: 85vh;
    overflow-x: auto;
  }
  
  .dashboard-table th, 
  .dashboard-table td {
    padding: 10px 15px;
    text-align: center;
    border: 1px solid #999;
  }
  
  .dashboard-table th {
    background-color: #a3a3a3;
    color: #fff;
    font-weight: bold;
  }
  
  .dashboard-table tbody tr:nth-child(even) {
    background-color: #e3e3e3;
  }
  
  .dashboard-table tbody tr:hover {
    background-color: #f1f1f1;
  }
  
  /* Button Styles */
  .dashboard-table-delete-btn {
    background-color: #ff4d4d;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .dashboard-table-delete-btn:hover {
    background-color: #ff1a1a;
  }
  
  .dashboard-table-edit-btn {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
  }
  
  .dashboard-table-edit-btn:hover {
    background-color: #3e8e41;
  }
  
.wallet-container{
  cursor: pointer;
}
  /* ====================== */
  

/* Step Timeline Styles */
.dashboard-step-timeline {
    width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 30px;
   }
   
   .dashboard-step-timeline-step {
     display: flex;
     flex-direction: column;
     align-items: center;
     color: #666;
     cursor: pointer;
   }
   
   .dashboard-step-timeline-step .circle {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: #ccc;
     display: flex;
     justify-content: center;
     align-items: center;
     font-weight: bold;
     font-size: 18px;
    z-index: 9
   }
   
   .dashboard-step-timeline-step.active .circle {
     background-color: #4caf50;
     color: #fff;
   }
   
   .dashboard-step-timeline-step span {
     margin-top: 8px;
     font-size: 14px;
   }
   
   .dashboard-step-timeline-line {
     flex-grow: 2;
     height: 2px;
     background-color: #ccc;
     margin: 0px -30px 20px;
    
   }
   
   /* Selectable Options Styles */
   .dashboard-step-timeline-options {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     justify-content: flex-start;
   }
   
   .dashboard-step-timeline-option {
     background-color: #4caf50;
     color: #fff;
     border: none;
     padding: 10px 20px;
     border-radius: 5px;
     cursor: pointer;
     font-size: 16px;
    margin-top: 10px
   }
   .dashboard-step-timeline-option.active{
    border: 1px solid #3e8e41;
    background: #205e22;
  }
   .dashboard-step-timeline-option:hover {
     background-color: #3e8e41;
   }
   
   /* Next Button Styles */
   .dashboard-step-timeline-next {
     margin-top: 30px;
    width:95%;
    display: flex;
     flex-wrap: wrap;
     gap: 10px;
     justify-content: flex-end;
   }
   
   .dashboard-step-timeline-next-btn {
     background-color: #4caf50;
     color: #fff;
     border: none;
     border-radius: 50%;
     width: 50px;
     height: 50px;
     font-size: 24px;
     font-weight: bold;
     cursor: pointer;
   }
   
   .dashboard-step-timeline-next-btn:hover {
     background-color: #3e8e41;
   }
   .black-color{
    color: #000;
   }

   /* Step4 */
   /* Container styles */
.image-selector-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    background-color: #757575;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  
  /* Input styles */
  .image-selector-input {
    display: none;
  }
  
  /* Placeholder styles */
  .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
    font-size: 24px;
  }
  
  .image-icon {
    font-size: 36px;
  }
  
  /* Image preview styles */
  .image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  

  .admin-popup-content{
  background-color: #e2e1e1;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  }

  .close-admin-popup {
    color: #f1f1f1;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close-admin-popup:hover,
  .close-admin-popup:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }



  /* Popup */
.modal {
  display: block;
  position: fixed; 
  z-index: 9999999; 
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4); 
}

/* Modal Content */
.modal-content {
  background-color: #fefefe00;
  margin: auto;
  padding: 0;
  width: 100%;
  z-index: 999999;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The Close Button */
.close {
  position: absolute;
  top: -15px;
  right: 0%;
  color: #ff0000;
  font-size: 30px;
  font-weight: bold;
  z-index: 99999999;
  background: #2E2737;

  padding: 0 12px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #F0DCAE;


}

.close:hover,
.close:focus {
  color: #920d0d;
  text-decoration: none;
  cursor: pointer;
}

.quest-popup-frame{
  position: relative;
  width: 30vw;
  height: 30vw;
  background-image: url('/assest/background/cbg.png');
  background-size: 30vw 30vw;
  background-repeat: no-repeat;
  background-position: center; 
}

.quest-popup-frame-content{
  width: 80%;
  height: 100%;
  padding: 7vh 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

}

.quest-popup-frame-footer{
  width: 60% !important;
  position: absolute !important;
 bottom: 40px;
  left: 20%;
}

.quest-popup-frame.win{
  width: 25vw;
  height: 25vw;
  background-size: 25vw 25vw;

}

.win-popup-frame-footer{
  width: 80% !important;
  position: absolute !important;
 bottom: 40px;
  left: 10%;
}
.black-color{
  color: #000000 !important;
}


.dashboard-content h1 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.form-select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
}

button.btn-primary {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  margin-top: 15px;
  background-color: #007bff;
  border: none;
  transition: background-color 0.3s ease;
}

button.btn-primary:hover {
  background-color: #0056b3;
}



/* ChangePassword.css */

.container {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  color: #333;
  margin-bottom: 25px;
}

.form-label {
  font-weight: 600;
  color: #555;
}

.form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 16px;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.btn-primary {
  width: 100%;
  font-weight: 600;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}
