body{
       overflow-x: hidden;
}
.custom-button {
    border-radius: 20px !important;
    color: #fff !important; 
    font-weight: bold !important;
    padding: 5px 10px !important; 
    border: none !important; 
    cursor: pointer !important; 
    font-size: 14px !important; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2) !important; 
    transition: background-color 0.3s ease, box-shadow 0.3s ease !important; 

}
.custom-button:hover {
    background-color: #2980b9 !important; /* Darker shade on hover */
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3) !important; /* Slightly larger shadow on hover */
}
 
@keyframes borderAnimation {
    0% {
        width: 0;
    }
    50% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

.animated-border {
    color:#ef5e32;
    position: relative;
    display: inline-block;
    padding-bottom: 4px; /* Adjust padding to ensure space for border */
}

.animated-border::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: #ef5e32;
    animation: borderAnimation 3s infinite; /* Continuous animation */
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Montserrat', sans-serif; 
  }
  
  th {
    background-color: #112e50; 
    opacity: 90%;
    color: #ffffff; 
    font-size: 1rem;
    font-weight: 600; 
    text-align: left; 
    padding: 12px 15px; 
    letter-spacing: 0.5px; 
    text-transform: uppercase; 
}

.deshboard_table td:nth-child(even){
     padding: 16px 24px !important; 
  text-align: left !important;   
  /*border-bottom: 1px solid #ddd !important;*/
  font-weight: bold !important; 
}

.deshboard_table td:nth-child(odd){
    font-weight: normal !important; 
}

td:nth-child(odd){
     padding: 16px 24px !important; 
  text-align: left !important;   
  /*border-bottom: 1px solid #ddd !important;*/
  font-weight: bold !important; 
}

.actual_price {
  text-decoration: line-through !important; 
  text-decoration-thickness: 1px !important; 
  font-size: 13px !important;
  font-weight: normal !important;
}
  
  /* Optional - Styling for table rows */
  tr:nth-child(even) {
    background-color: rgba(249, 250, 251, 0.6) !important; 
  }
  
  tr:nth-child(odd) {
    background-color: #ffffff !important; /* White for odd rows */
  }
  
  td {
    padding: 10px 15px; /* Padding for td elements */
    border-bottom: 1px solid #e1e1e1 !important; /* Light border for clarity */
  }
  
  .main_heading{
   font-size: 30px !important;
    font-weight: bold !important;
  }
  
  .user_name{
      font-size:16px !important;
      font-weight:bold !important;
  }
  

  .submit_btn:hover{
     background:#ef5e32 !important;
  }
  
  .submit_btn {
    padding: 0.75rem 1.5rem !important; /* px-6 py-3 */
    background: #ef5e32 !important; /* bg-[#ef5e32] */
    color: #fff !important; /* text-black */
    font-weight: 600 !important; /* font-semibold */
    border-radius: 30px !important; /* rounded-lg */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1) !important; /* shadow */
    outline: none !important; /* focus:outline-none */
    transition: all 300ms ease-in-out !important; /* transition ease-in-out duration-300 */
    display: inline-flex !important;
    gap: 5px !important;
    align-item:center !important;
}

.submit_btn:hover {
    background: #284261 !important; /* hover:bg-[#d4502b] */
}

.submit_btn:focus {
    box-shadow: 0 0 0 2px #ef5e32, 0 0 0 4px #ffffff !important; /* focus:ring-2 focus:ring-[#ef5e32] focus:ring-offset-2 */
}

.cart-succes-msg{
     padding: 16px !important;
    margin-bottom: 16px !important;
    font-size: 14px !important;
    color: #047857 !important; 
    background-color: #d1fae5 !important;
    border: 1px solid #86efac !important;
    border-radius: 4px !important;
}

.nav-incons{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap:10px !important;
}

.nav-incons a{
    border: 1px solid #2980b9 !important;
    border-radius: 50% !important;
    padding: 10px !important;
    color:#284261 !important;
}

.nav-incons a:hover{
    border: 1px solid #2980b9 !important;
    border-radius: 50% !important;
    padding: 10px !important;
    background:#284261 !important;
    color:#fff !important;
}

header h2{
    color:#112e50 !important;
    font-size: 30px !important;
    font-weight: bold !important;
}

.main_section{
    padding-bottom:80px !important;
}

.main_section.welcome{
       padding-top:80px !important;
}

.welcome_page_icons{
    color:#000 !important;
}

.badge {
    background-color: #dc3545; /* Equivalent to Bootstrap's bg-danger */
    color: #fff; /* Text color for the badge */
    font-size: 0.75rem;
    font-weight: bold;
    line-height: 1;
    padding: 0.25em 0.5em;
    border-radius: 10px; /* Rounded badge */
    position: absolute; /* Position it relative to the parent */
    top: 0; /* Align at the top */
    left: 100%; /* Start from the end of the icon */
    transform: translate(-50%, -50%); /* Center it horizontally and vertically */
}

@media screen and (max-width: 1220px) {
.card-wish-wreper{
    display: flex;
    flex-wrap: wrap;
    border:none !important;
    gap: 10px;
}
}