.login-wrap{
       width: 100%;
       border: 1px solid #E6E6E6;
       border-radius: 10px;
       padding: 50px 30px 40px;
       max-width: 580px;
       margin: 0 auto;
       margin-top: 50px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.form-group{
       width: 100%;
       margin-bottom: 20px;
}

.form-group label{
     font-size: 14px;
     color: #6C489C;
     margin-bottom: 5px;
     display: block;
     width: 100%;
     padding-left: 5px;
}

.form-control{
       width: 100% !important;
       height: 54px;
       line-height: 54px;
       border: 1px solid #EBE4F3 !important;
       font-size: 16px !important;
        font-family: 'avenir_nextmedium';
font-weight:500;
       color: #171717 !important; 
       padding: 0 20px !important;
       outline: none;
       background-color: #fff !important;
       border-radius: 60px !important;
       -webkit-border-radius: 60px !important; 
       -moz-border-radius: 60px;
       -ms-border-radius: 60px;
       -o-border-radius: 60px;
}

.form-control:focus,
.form-control:active{
       border-color: #6C489C !important;
}

.password-input-wrapper{
       position: relative;
       width: 100%;
}

.password-input-wrapper .form-control{
       padding-right: 50px;
}

.password-toggle-btn{
       position: absolute;
       right: 15px;
       top: 50%;
       transform: translateY(-50%);
       background: none;
       border: none;
       cursor: pointer;
       padding: 5px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: #6C489C;
       opacity: 0.6;
       transition: opacity 0.3s ease;
}

.password-toggle-btn:hover{
       opacity: 1;
}

.password-toggle-btn:focus{
       outline: none;
       opacity: 1;
}

.password-toggle-icon{
       width: 20px;
       height: 20px;
       display: block;
}

.password-toggle-icon.password-eye-slash{
       display: none;
}

.password-input-wrapper.show-password .password-toggle-icon.password-eye{
       display: none;
}

.password-input-wrapper.show-password .password-toggle-icon.password-eye-slash{
       display: block;
}

/* WooCommerce form support */
.woocommerce-form-row .password-input-wrapper .form-control,
.woocommerce-form-row .password-input-wrapper input[type="password"],
.woocommerce-form-row .password-input-wrapper input[type="text"]{
       width: 100%;
       padding-right: 50px;
}

.woocommerce-form-row .password-input-wrapper{
       position: relative;
}

.form-login_btns{
       width: 100%;
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
       margin-top: 50px;
}

.form-login_btns.btn_more_margin{
       margin-top: 100px;
}

.form-login_btns p{
       text-align: center;
       margin-top: 30px;
       color: #171717;
       width: 100%;
       text-align: center;
       font-size: 16px;
        font-family: 'avenir_nextmedium';
font-weight:500;
}

.form-login_btns p a{
        color: #502E91;
        transition: all 0.3s ease;
}

.form-login_btns p a:hover{
    color: #7FBD61;
}

.form-login_btns .btn_main{
      justify-content: center;
}

.form-reset_wrap{
       width: 100%;
      margin-top: 20px;
      display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.form-reset_left{
       width: 40%;
       display: flex;
       align-items: center;
       position: relative;
}

.checkbox_main label{
       font-size: 16px;
        font-family: 'avenir_nextmedium';
font-weight:500;
       color: #171717;
       cursor: pointer;
       margin: 0;
       display: flex;
       flex-wrap: wrap;
       align-items: center;
       padding-left: 35px;
}

.checkbox_main label a{
      padding-left: 6px;
}

.checkbox_main{
       width: 100%;
       position: relative;
}

/* Custom checkbox styling */
.checkbox_main input[type="checkbox"]{
       position: absolute;
       left: 0;
       opacity: 0;
       cursor: pointer;
       width: 20px;
       height: 20px;
       z-index: 1;
}

.checkbox_main label::before{
       content: '';
       position: absolute;
       left: 0;
       top: 50%;
       transform: translateY(-50%);
       display: inline-block;
       width: 20px;
       height: 20px;
       border: 1px solid #EBE4F3;
       border-radius: 4px;
       background-color: #fff;
       transition: all 0.3s ease;
       box-sizing: border-box;
}

.form-reset_left label:hover::before{
       border-color: #6C489C;
}

.checkbox_main input[type="checkbox"]:checked + label::before{
       background-color: #7FBD61;
       border-color: #EBE4F3;
       background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
       background-repeat: no-repeat;
       background-position: center;
       background-size: 12px 12px;
}

/* Gender Radio Button Styles */
.gender-label {
       color: #8B5CF6;
       font-weight: 500;
       font-size: 16px;
       margin-bottom: 15px;
       display: block;
   }
   
   .gender-radio-group {
       display: flex;
       gap: 20px 40px;
       flex-wrap: wrap;
       margin-top: 15px;
   }
   
   .gender-radio-option {
       display: flex;
       align-items: center;
       position: relative;
   }
   
   .gender-radio-option input[type="radio"] {
       position: absolute;
       opacity: 0;
       cursor: pointer;
       width: 0;
       height: 0;
   }
   
   .gender-radio-option label {
       display: flex;
       align-items: center;
       cursor: pointer;
       color: #171717;
       font-size: 16px;
        font-family: 'avenir_nextmedium';
font-weight:500;
       margin-bottom: 0;
       padding-left: 35px;
       position: relative;
   }
   
   .gender-radio-option label::before {
       content: '';
       position: absolute;
       left: 0;
       width: 24px;
       height: 24px;
       border: 2px solid #EBE4F3;
       border-radius: 50%;
       background-color: #EBE4F3;
       transition: all 0.3s ease;
   }
   
   .gender-radio-option input[type="radio"]:checked + label::before {
       background-color: #502E91;
   }
   
   .gender-radio-option input[type="radio"]:checked + label::after {
       content: '';
       position: absolute;
       left: 5px;
       top: 5px;
       width: 14px;
       height: 15px;
       border-radius: 50%;
       background-image: url(../images/radio-tick.svg);
       background-repeat: no-repeat;
       background-position: center;
       background-color: #fff;
   }
   
   .gender-radio-option label:hover::before {
       background-color: #502E91;
   }
   
   /* Responsive for gender radio buttons */
   @media (max-width: 900px) {
       .gender-radio-group {
           gap: 15px;
       }
   }

.form-reset_right{
       width: 60%;
}

.form-reset_right p a{
    color: #502E91;
    transition: all 0.3s ease;
}

.form-reset_right p a:hover{
    color: #7FBD61;
}

.form-reset_right p{
    font-size: 16px;
    text-align: right;
     font-family: 'avenir_nextmedium';
font-weight:500;
    color: #171717;
}


.otp-verification-wrap{
    width: 100%;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    padding: 85px 30px 30px;
    max-width: 580px;
    min-height: 375px;
    margin: 0 auto;
    margin-top: 50px;
}

.form-otp_main{
       width: 100%;
       display: flex;
       flex-wrap: wrap;
       justify-content: space-between;
       margin-bottom: 80px;
}

.form-otp_main .form-control{
      max-width: 120px;
      text-align: center;
}

.form-otp_main p{
    width: 100%;
      text-align: right;
      margin-top: 10px;
      font-size: 16px;
       font-family: 'avenir_nextmedium';
font-weight:500;
      color: #171717;
}


.individual-organization-wrap{
     width: 100%;
     min-height: 340px;
     max-width: 750px;
     margin: 0 auto;
     margin-top: 50px;
}

.individual-organization-wrap ul{
       display: flex;
       flex-wrap: wrap;
       row-gap: 8px;
}

.individual-organization-wrap ul li{
        width: 100%;
        border: 1px solid #E6E6E6;
        background-color: #fff;
        border-radius: 10px;
        transition: all 0.3s ease;
}

.individual-organization-wrap ul li a{
      width: 100%;
      padding: 25px 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      position: relative;
      cursor: pointer;
}

.individual-organization-wrap ul li:hover{
    background-color: #EBE4F3;
}

.organization-icon{
       width: 60px;
}



.organization-content{
       width: calc(85% - 60px);
       padding-left: 20px;
}

.organization-content h3{
    font-size: 18px;
    line-height: 24px;
    font-family: 'avenir_nextdemi_bold';
    color: #51308F;
    margin-bottom: 4px;
}

.organization-content p{
      font-size: 16px;
}

.organization-nav{
     width: 42px;
     height: 42px;
     background-color: #EBE4F3;
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 100%;
     position: absolute;
     right: 20px;
     margin: auto;
     top: 0;
     bottom: 0;
     transition: all 0.3s ease;
}

.individual-organization-wrap ul li:hover .organization-nav{
    background-color: #502E91;
}

.individual-organization-wrap ul li:hover .organization-nav img{
      filter: brightness(0) invert(1);
}

.back-btn{
       width: 60px;
       height: 60px;
       background-color: #fff;
       border: 1px solid #EBE4F3;
       display: flex;
       justify-content: center;
       align-items: center;
       border-radius: 100%;
       position: absolute;
       left: 0;
       top: -5px;
       transition: all 0.3s ease;
}

.back-btn:hover{
    background-color: #502E91;
    border: 1px solid #502E91;
}

.back-btn:hover img{
    filter: brightness(0) invert(1);
}

.registration_form_main{
       width: 100%;
       border: 1px solid #E6E6E6;
       border-radius: 10px;
       padding: 30px;
       max-width: 755px;
       margin: 0 auto;
       margin-top: 50px;
}

.form-group_half{
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 15px;
}

.nice-select.form-control.open{
       position: relative;
       z-index: 1000;
}

.nice-select.form-control .list{
         width: 100%;
}

.register_agreement{
         width: 100%;
         margin-top: 40px;
}

.register-form-section-main{
       width: 100%;
       height: auto;
       display: grid
}

.register_disclaimer{
          width: 100%;
          background-color: #FAFAFA;
          padding: 25px;
          border-radius: 20px;
          -webkit-border-radius: 20px;
}

.register_disclaimer p{
         font-size: 16px;
}

.register_disclaimer_img{
       width: 100%;
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          margin-bottom: 20px;
}

.register_disclaimer_img h4{
         font-size: 18px;
         color: #51308F;
             font-family: 'avenir_nextdemi_bold';
             margin-left: 10px;
}

.form-section-title{
       font-size: 20px;
       color: #51308F;
       font-family: 'avenir_nextdemi_bold';
       margin-top: 10px;
       padding-bottom: 7px;
       border-bottom: 1px solid #d0c8da;
}



/*my account*/

.fourth_title,
.fourth-title{
          font-size: 34px;
          line-height: 40px;
          color: #171717;
             font-family: 'avenir_nextbold';
           font-weight: bold;
}

.default-page-section{
         padding: 90px 0 110px;
}

.woocommerce-account .woocommerce-MyAccount-navigation{
          width: 18%;
          background-color: #EBE4F3;
          border-radius: 10px;
          padding: 25px 20px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a{
         font-family: 'avenir_nextmedium';
         font-weight: 500;
       font-size: 18px;
       color: #424242;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a{
         text-decoration: none;
         color: #502E91;
}

.woocommerce-account .woocommerce-MyAccount-navigation li:last-child a{
            color: #ED1C24;
}

.woocommerce-account .woocommerce-MyAccount-navigation .helpdesk-menu-item li:last-child a{
            color: #424242;
}

.woocommerce-account .woocommerce-MyAccount-navigation .helpdesk-menu-item li:last-child a:hover{
         color: #502E91;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:hover.action-buttons{
        text-decoration: none !important;
         color: #502E91;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul{
          margin-bottom: 0;
          row-gap: 20px;
          display: flex;
          flex-wrap: wrap;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    text-decoration: none !important;
   color: #502E91;
}


.woocommerce-account .woocommerce-MyAccount-navigation li{
      padding: 0;
      width: 100%;
      position: relative;
}

/* Helpdesk Dropdown Styles */
.woocommerce-account .woocommerce-MyAccount-navigation .helpdesk-menu-item {
    position: relative;
}

.woocommerce-account .woocommerce-MyAccount-navigation .helpdesk-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation .dropdown-indicator {
    font-size: 12px;
    margin-top: 7px;
    transition: transform 0.3s ease;
    display: inline-block;
        transform: rotate(180deg);
}

.woocommerce-account .woocommerce-MyAccount-navigation .helpdesk-menu-item.active .dropdown-indicator {
    transform: rotate(0deg);
}

.woocommerce-account .woocommerce-MyAccount-navigation .helpdesk-submenu {
    display: none;
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
    flex-direction: column;
    gap: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation .helpdesk-menu-item.active .helpdesk-submenu {
    display: flex;
}

.woocommerce-account .woocommerce-MyAccount-navigation .helpdesk-submenu-item {
    width: 100%;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation .helpdesk-submenu-item a {
    font-size: 16px;
    color: #424242;
    padding: 8px 0;
    display: block;
    transition: color 0.3s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation .helpdesk-submenu-item a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation .helpdesk-submenu-item a.active {
    color: #502E91;
    text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation h3{
       font-size: 22px;
       line-height: 28px;
       color: #171717;
       font-family: 'avenir_nextdemi_bold';
       margin-bottom: 35px;
}

.woocommerce-account .woocommerce-MyAccount-content{
          width: 82%;
          padding-left: 20px;
}

.dash_board_wrap{
          width: 100%;
          height: auto;
}

.dash_board_boxes_main{
          width: 100%;
          display: grid;
          gap: 10px;
          grid-template-columns: repeat(4, 1fr);
}

.dash_board_box{
          width: 100%;
          border: 1px solid #E6E6E6;
          border-radius: 10px;
          padding: 20px;
          min-height: 135px;
          display: flex;
          flex-wrap: wrap;
}

.dash_board_box h3{
       font-size: 16px;
       line-height: 22px;
       color: #7FBF62;
        font-family: 'avenir_nextmedium';
        font-weight: 500;
        width: 100%;
}

.dash_board_box h2{
          margin-top: auto;
          font-size: 40px;
           font-family: 'avenir_nextdemi_bold';
           color: #51308F;
}

/* Dashboard Tables Styles */
.reservation-overview-section,
.individual-training-section {
    width: 100%;
    margin-top: 50px;
}

.table-section-title {
    font-size: 28px;
    line-height: 35px;
    color: #000000;
    font-family: 'avenir_nextdemi_bold';
    font-weight: bold;
    margin-bottom: 25px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 15px;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    min-width: 800px;
}

.dashboard-table thead {
    background-color: #3F006F;
}

.dashboard-table thead th {
    color: #FFFFFF;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    font-size: 16px;
    padding: 5px 10px;
    text-align: left;
    white-space: nowrap;
}

.dashboard-table tbody tr {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E6E6E6;
    transition: background-color 0.3s ease;
}

/* .dashboard-table tbody tr:last-child {
    border-bottom: none;
} */

.dashboard-table tbody tr:hover {
    background-color: #fff;
}

.dashboard-table tbody td {
    color: #424242;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    font-size: 16px;
    padding: 15px 10px;
    vertical-align: middle;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
         justify-content: center;
}

.btn-assign {
    background-color: #FFFFFF;
    border: 1px solid #9F7FC9;
    color: #502E91;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 46px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-assign:hover {
    background-color: #502E91;
    color: #FFFFFF;
    text-decoration: none;
}

.btn-refund {
    background-color: #51338F;
    border: 1px solid #51338F;
    color: #FFFFFF;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    font-size: 14px;
    padding: 6px 16px;
   border-radius: 46px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-refund:hover {
    background-color: #7FBF62;
    border-color: #7FBF62;
}

/* Status Colors */
.status-expired {
    color: #CF282E;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
        padding: 6px 16px;
}

.status-pending {
    color: #F0CC00;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
        padding: 6px 16px;
}

.status-passed {
    color: #7EBE63;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
        padding: 6px 16px;
}

.view-link {
    color: #6C489C;
    text-decoration: underline;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
     padding: 6px 16px;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.view-link:hover {
    color: #7EBE63;
    text-decoration: underline;
}

/* Refund Request Modal Styles */
.refund-fancybox .fancybox-bg {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.refund-fancybox .fancybox-slide {
    padding: 20px;
}

#refund-request-modal{
    padding: 0;
      border-radius: 10px !important;
}

.refund-modal-content {
    background-color: #FFFFFF;
    border-radius: 10px !important;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 50px 30px 30px;
}



.refund-modal-title {
    font-size: 26px;
    line-height: 34px;
    color: #171717;
    font-family: 'avenir_nextbold';
    font-weight: 700;
margin-bottom: 20px;
}

.refund-modal-close {
    width: 32px;
    height: 32px;
    background-color: #EBE4F3;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    position: absolute;
    top: 30px;
    right: 30px;
}

.refund-modal-close:hover {
    background-color: #6C489C;
}

.refund-modal-close:hover svg path {
    stroke: #FFFFFF;
}

.refund-modal-body {
    padding: 0;
}

.refund-policy-text {
    font-size: 14px;
    line-height: 24px;
    color: #424242;
    margin: 0 0 30px 0;
}

.refund-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.refund-detail-item {
    display: flex;
    flex-direction: column;
}

.refund-detail-label {
    font-size: 16px;
    line-height: 20px;
    color: #502E91;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    margin-bottom: 5px !important;
}

.refund-detail-value {
    font-size: 20px;
    line-height: 24px;
    color: #171717;
    font-family: 'avenir_nextdemi_bold';
    font-weight: 700;
    margin: 0 0 8px 0;
}

.refund-detail-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
    color: #9F7FC9;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
}

.refund-detail-dot {
    color: #9F7FC9;
    font-size: 14px;
}

.refund-deadline {
    font-size: 16px;
    line-height: 24px;
    color: #424242;
    padding-top: 20px;
    border-top: 1px solid #E6E6E6;
}

.refund-deadline strong {
    font-family: 'avenir_nextdemi_bold';
    font-weight: 700;
    color: #424242;
}


.refund-btns{
       width: 100%;
       display: flex;
       flex-wrap: wrap;
       justify-content: flex-end;
       margin-top: 120px;
       gap: 10px;
}


.refund-btn-cancel {
    min-width: 155px;
    height: 48px;
    line-height: 48px;
    padding: 0 24px;
    text-align: center;
    background-color: #FFFFFF;
    border: 1px solid #9F7FC9;
    border-radius: 46px;
    color: #502E91;
    font-size: 16px;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.refund-btn-cancel:hover {
    background-color: #502E91;
    border-color: #502E91;
    color: #fff;
}



/* Responsive Styles for Refund Modal */
@media (max-width: 900px) {
    .refund-fancybox .fancybox-slide {
        padding: 15px;
    }
    
    .refund-modal-header {
        padding: 25px 25px 15px;
    }
    
    .refund-modal-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .refund-modal-close {
        width: 28px;
        height: 28px;
        top: 25px;
        right: 25px;
    }
    
    .refund-modal-body {
        padding: 25px;
    }
    
    .refund-policy-text {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 25px;
    }
    
    .refund-details-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .refund-detail-value {
        font-size: 17px;
        line-height: 23px;
    }
    
    .refund-modal-footer {
        padding: 15px 25px 25px;
        flex-direction: column-reverse;
    }
    
    .refund-btn-cancel,
    .refund-btn-confirm {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .refund-fancybox .fancybox-slide {
        padding: 10px;
    }
    
    .refund-modal-header {
        padding: 20px 20px 15px;
    }
    
    .refund-modal-title {
        font-size: 22px;
        line-height: 28px;
        padding-right: 40px;
    }
    
    .refund-modal-close {
        width: 26px;
        height: 26px;
        top: 20px;
        right: 20px;
    }
    
    .refund-modal-body {
        padding: 20px;
    }
    
    .refund-policy-text {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    
    .refund-details-grid {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .refund-detail-label {
        font-size: 13px;
    }
    
    .refund-detail-value {
        font-size: 16px;
        line-height: 22px;
    }
    
    .refund-detail-meta {
        font-size: 13px;
    }
    
    .refund-deadline {
        font-size: 15px;
        padding-top: 15px;
    }
    
    .refund-modal-footer {
        padding: 15px 20px 20px;
        gap: 12px;
    }
    
    .refund-btn-cancel,
    .refund-btn-confirm {
        padding: 10px 20px;
        font-size: 15px;
    }
}

/* Assign Individual Page Styles */
.assign-individual-page {
    width: 100%;
    padding-bottom: 50px;
}

.assign-individual-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    margin-top: 30px;
}

.assign-individual-page  .back-btn {
    width: 45px;
    height: 45px;
    position: static;
}

.assign-individual-header .fourth_title {
    flex: 1;
    margin: 0;
}

.assign-header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-export-all {
    padding: 10px 20px;
    background-color: #FFFFFF;
    border: 1px solid #9F7FC9;
    border-radius: 46px;
    color: #502E91;
    font-size: 16px;
    line-height: 24px;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-export-all:hover {
    background-color: #EBE4F3;
    border-color: #502E91;
}

.btn-download-coupons {
    padding: 10px 20px;
    background-color: #51308F;
    border: 1px solid #51308F;
    border-radius: 46px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 24px;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-download-coupons:hover {
    background-color: #6C489C;
    border-color: #6C489C;
}

/* Assign Coupons Section */
.assign-coupons-section {
    width: 100%;
    margin-bottom: 50px;
}

.assign-coupons-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
}

.assign-header-col {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.assign-section-label {
    font-size: 16px;
    line-height: 22px;
    color: #424242;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    margin: 0 !important;
}

.assign-coupons-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.assign-coupon-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.assign-coupon-col {
    display: flex;
    align-items: center;
}

.coupon-display {
    width: 100%;
    background-color: #EBE4F3;
    border: 1px solid #EBE4F3;
    border-radius: 60px;
    height: 56px;
    padding:0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.3s ease;
}

/* .coupon-display.active {
    border-color: #7FBD61;
    background-color: #E6F5E6;
} */

.coupon-code {
    font-size: 16px;
    line-height: 24px;
    color: #171717;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    flex: 1;
}

.btn-copy-code {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #502E91;
    font-size: 14px;
    line-height: 20px;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.btn-copy-code:hover {
    opacity: 0.8;
}

.btn-copy-code svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.assign-email-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.assign-email-input {
    flex: 1;
    height: 54px;
    padding: 0 20px;
    border: 1px solid #EBE4F3;
    border-radius: 60px;
    background-color: #FFFFFF;
    font-size: 16px;
    line-height: 24px;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    color: #424242;
    outline: none;
    transition: border-color 0.3s ease;
}

.assign-email-input:focus {
    border-color: #502E91;
}

.assign-email-input::placeholder {
    color: #9F9F9F;
}

.btn-share {
    background: none;
    border: none;
    color: #502E91;
    font-size: 16px;
    line-height: 24px;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-share:hover {
    color: #6C489C;
    text-decoration: underline;
}

.assign-coupons-section .btn-share{
    position: absolute;
    right: 20px;
}

.assign-coupons-footer {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn-share-coupons {
    padding: 12px 24px;
    background-color: #51308F;
    border: 1px solid #51308F;
    border-radius: 46px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 24px;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-share-coupons:hover {
    background-color: #6C489C;
    border-color: #6C489C;
}

.btn-share-coupons svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Assigned Individual Section */
.assigned-individual-section {
    width: 100%;
    margin-top: 50px;
}

.assigned-individual-section .fourth_title {
    margin-bottom: 25px;
}

.status-redeemed {
    color: #7FBD61;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    font-size: 16px;
}

/* Responsive Styles for Assign Individual Page */
@media (max-width: 992px) {
    .assign-individual-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .assign-individual-header .fourth_title {
        width: 100%;
    }
    
    .assign-header-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .assign-coupons-header,
    .assign-coupon-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .assign-coupons-header{
        display: none;
    }
}

@media (max-width: 900px) {
    .assign-individual-header {
        margin-bottom: 30px;
    }
    
    .assign-individual-header .fourth_title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .assign-header-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-export-all,
    .btn-download-coupons {
        width: 100%;
        justify-content: center;
    }
    
    .assign-coupons-section {
        margin-bottom: 40px;
    }
    
    .assign-coupons-list {
        gap: 20px;
    }
    
    .coupon-display {
        align-items: center;
        gap: 12px;
    }
    
    .assign-email-wrapper {
        flex-direction: column;
        align-items: stretch;
        position: relative;
    }
    
    .btn-share {
        width: 100%;
        text-align: center;
        padding: 10px;
        border: 1px solid #502E91;
        border-radius: 10px;
    }

      .assign-email-wrapper .btn-share{
        position: absolute;
        right: 10px;
        z-index: 2;
      }
    
    .assign-coupons-footer {
        justify-content: center;
    }
    
    .btn-share-coupons {
        width: 100%;
        justify-content: center;
    }
    
    .assigned-individual-section {
        margin-top: 40px;
    }
    
    .assigned-individual-section .fourth_title {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .assign-individual-header .fourth_title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .assign-section-label {
        font-size: 15px;
    }
    
    .coupon-code {
        font-size: 15px;
    }
    
    .btn-copy-code {
        font-size: 13px;
    }
    
    .assign-email-input {
        font-size: 15px;
    }
    
    .btn-share,
    .btn-share-coupons {
        font-size: 15px;
    }
}

/* Request Refund Page Styles */
.request-refund-page {
    width: 100%;
    padding-bottom: 50px;
}

.request-refund-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
}

.request-refund-header .back-btn {
    width: 45px;
    height: 45px;
    position: static;
}

.request-refund-header .fourth_title {
    margin: 0;
}

/* Request Refund Section */
.request-refund-section {
    width: 100%;
    margin-bottom: 50px;
}

.refund-policy-description {
    font-size: 16px;
    line-height: 24px;
    color: #424242;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    margin: 0 0 30px 0;
}

.refund-request-table {
    margin-bottom: 30px;
}

.refund-request-table .checkbox-column {
    width: 50px;
    text-align: center;
}

.refund-checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 !important;
    padding: 0;
}

.refund-checkbox,
.refund-checkbox-select-all {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.refund-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 1px solid #9F7FC9;
    border-radius: 4px;
    background-color: transparent;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.refund-checkbox:checked + .refund-checkbox-custom,
.refund-checkbox-select-all:checked + .refund-checkbox-custom {
    background-color: #7FBD61;
    border-color: #7FBD61;
}

.refund-checkbox:checked + .refund-checkbox-custom::after,
.refund-checkbox-select-all:checked + .refund-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

.refund-checkbox:hover + .refund-checkbox-custom,
.refund-checkbox-select-all:hover + .refund-checkbox-custom {
    border-color: #502E91;
}

.refund-checkbox:indeterminate + .refund-checkbox-custom,
.refund-checkbox-select-all:indeterminate + .refund-checkbox-custom {

}

.refund-checkbox:indeterminate + .refund-checkbox-custom::after,
.refund-checkbox-select-all:indeterminate + .refund-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 2px;
    background-color: white;
    border: none;
}

.refund-request-footer {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 35px;
}

.btn-request-refund-selected {
    padding: 12px 24px;
    background-color: #51308F;
    border: 1px solid #51308F;
    border-radius: 46px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 24px;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-request-refund-selected:hover:not(:disabled) {
    background-color: #6C489C;
    border-color: #6C489C;
}

.btn-request-refund-selected:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-request-refund-selected svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Refund History Section */
.refund-history-section {
    width: 100%;
    margin-top: 90px;
}

.refund-history-section .fourth_title {
    margin-bottom: 25px;
}

.status-success {
    color: #7FBD61;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    font-size: 16px;
}

/* Responsive Styles for Request Refund Page */
@media (max-width: 900px) {
    .request-refund-header {
        margin-bottom: 25px;
    }
    
    .request-refund-header .fourth_title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .refund-policy-description {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 25px;
    }
    
    .refund-request-footer {
        justify-content: center;
    }
    
    .btn-request-refund-selected {
        width: 100%;
        justify-content: center;
    }
    
    .refund-history-section {
        margin-top: 40px;
    }
    
    .refund-history-section .fourth_title {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .request-refund-header .fourth_title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .refund-policy-description {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    
    .refund-checkbox-custom {
        width: 18px;
        height: 18px;
    }
    
    .btn-request-refund-selected {
        font-size: 15px;
        padding: 10px 20px;
    }

    .dashboard-table tbody tr{
        padding: 25px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .dashboard-table {
        min-width: 700px;
    }
    
    .dashboard-table thead th,
    .dashboard-table tbody td {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .table-section-title {
        font-size: 24px;
    }
    
    .reservation-overview-section,
    .individual-training-section {
        margin-top: 40px;
    }
}

@media (max-width: 900px) {
    .table-section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .dashboard-table {
        min-width: 600px;
    }
    
    .dashboard-table thead th,
    .dashboard-table tbody td {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .action-buttons {
               align-items: center;
        gap: 10px 12px;
        justify-content: flex-start;
    }
    
    .btn-assign,
    .btn-refund {
        width: 100%;
        font-size: 15px;
        padding: 6px 15px;
    
    }
}

@media (max-width: 900px) {
    .reservation-overview-section,
    .individual-training-section {
        margin-top: 30px;
    }
    
    .table-section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
  
    
    .dashboard-table {
        min-width: auto;
        width: 100%;
    }
    
    .dashboard-table thead th,
    .dashboard-table tbody td {
        padding: 8px 10px;
        font-size: 16px;
    }
    
    /* Transform table to card layout on very small screens */
    .dashboard-table,
    .dashboard-table thead,
    .dashboard-table tbody,
    .dashboard-table th,
    .dashboard-table td,
    .dashboard-table tr {
        display: block;
    }
    
    .dashboard-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .dashboard-table tbody tr {
        border: 1px solid #E6E6E6;
        border-radius: 10px;
        margin-bottom: 20px;
        padding: 30px;
        background-color: #EBE4F3;
    }
    
    .dashboard-table tbody td {
        border: none;
        padding: 8px 0;
        position: relative;
        padding-left: 50%;
        text-align: left;
    }
    
    .dashboard-table tbody td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        font-weight: bold;
        color: #3F006F;
        font-size: 16px;
    }
    
    .dashboard-table tbody td[data-label="Action"] {
        padding-left: 0;
    }
    
    .dashboard-table tbody td[data-label="Action"]:before {
        display: none;
    }
}

/* Training Progress Page Styles */
.training-progress-page {
    width: 100%;
    padding-bottom: 50px;
}

.training-progress-header {
    width: 100%;
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}

.training-progress-header .back-btn {
    width: 45px;
    height: 45px;
    position: static;

}

.training-progress-header .back-btn:hover {
    background-color: #502E91;
    border: 1px solid #502E91;
}

.training-progress-header .back-btn:hover img {
    filter: brightness(0) invert(1);
}

.training-progress-header .page-title {
    font-size: 34px;
    line-height: 35px;
    color: #171717;
    font-family: 'avenir_nextdemi_bold';
    font-weight: bold;
    margin: 0;
}

/* Training Program Summary Card */
.training-program-summary {
    width: 100%;
    background-color: #fff;
    border: 1px solid #EBE4F3;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
}

.summary-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 25px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-item {
    display: flex;
    flex-direction: column;
}

.summary-item label {
    font-size: 14px;
    color: rgba(118, 118, 118, 0.66);
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    margin-bottom:0;
}

.summary-item .summary-value {
    font-size: 16px;
    color: #424242;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
}

.summary-item .progress-percentage {
    color: #7FBD61;
    font-weight: 600;
}

.summary-item .certificate-download {
       color: #424242;

    transition: color 0.3s ease;
}

.summary-item .certificate-download:hover {
    color: #502E91;
}

/* Attendance Section */
.attendance-section {
    width: 100%;
    margin-top: 50px;
}

.attendance-section .fourth-title {
    margin-bottom: 25px;
}

/* Attendance Status Colors */
.status-attended {
    color: #7FBD61;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    font-size: 16px;
}

.status-upcoming {
    color: #502E91;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    font-size: 16px;
}

/* Responsive Styles for Training Progress */
@media (max-width: 1200px) {
    .summary-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .training-progress-header .page-title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .attendance-section .fourth-title {
        font-size: 28px;
    }
    
    .summary-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .training-program-summary {
        padding: 25px;
    }
}

@media (max-width: 900px) {
    .training-progress-header {
        margin-bottom: 25px;
    }
    
    .training-progress-header .back-btn {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .training-progress-header .page-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .attendance-section {
        margin-top: 40px;
    }
    
    .attendance-section .fourth-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
   
    
    .training-program-summary {
        padding: 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .training-progress-header .back-btn {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .training-progress-header .page-title {
        font-size: 22px;
        line-height: 26px;
    }
    
    .attendance-section .fourth-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .training-program-summary {
        padding: 15px;
        margin-bottom: 30px;
    }
    
    .summary-item label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .summary-item .summary-value {
        font-size: 15px;
    }

     .summary-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
}

/* Programs Page Styles */
.programs-page {
    width: 100%;
    padding-bottom: 50px;
}

.programs-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.programs-title {
    margin: 0;
    position: relative;
  
}


.programs-filters {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.programs-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.programs-search-wrapper .search-icon {
    position: absolute;
    left: 5px;
    width: 20px;
    height: 20px;
    z-index: 1;
    filter: brightness(0) saturate(100%) invert(67%) sepia(40%) saturate(1000%) hue-rotate(70deg) brightness(105%) contrast(85%);
}

.programs-search-input {
    width: 450px;
    height: 40px;
    padding: 0 20px 0 35px;
    border: none;
    border-bottom: 1px solid #E6E6E6;
    border-radius: 0;
    font-size: 16px;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
 color: #424242;
    background-color: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

.programs-search-input:focus {
    border-color: #6C489C;
}

.programs-filter-dropdown {
    height: 40px;
    padding: 0 40px 0 20px;
    border: 1px solid #E6E6E6;
    border-radius: 50px;
    font-size: 16px !important;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    color: #424242;
    background-color: #fff;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("../images/arrow-account.svg");
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: border-color 0.3s ease;
}

.programs-filter-dropdown:hover,
.programs-filter-dropdown:focus {
    border-color: #6C489C;
}

.programs-table-section {
    width: 100%;
    margin-top: 30px;
}

/* Responsive Styles for Programs Page */
@media (max-width: 992px) {
    .programs-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .programs-filters {
        width: 100%;
        justify-content: space-between;
    }
    
    .programs-search-input {
        width: 250px;
    }
}

@media (max-width: 900px) {
    .programs-header {
        margin-bottom: 25px;
    }
    
    .programs-title {
        font-size: 28px;
    }
    
    .programs-filters {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .programs-search-wrapper,
    .programs-search-input {
        width: 100%;
    }
    
    .programs-filter-dropdown {
        width: 100%;
    }
    
    .programs-table-section {
        margin-top: 25px;
    }
}

@media (max-width: 576px) {
    .programs-title {
        font-size: 24px;
    }
    
    .programs-title::after {
        width: 80px;
        height: 2px;
    }
}

.main_attendance_table{
      margin-bottom: 50px;
}

/* Training Service Page Styles */
.training-service-page {
    width: 100%;
}

.training-service-page .fourth_title {
    margin-bottom: 20px;
}

.training-service-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 10px;
}

.training-service-card {
    background-color: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    padding:40px 20px 20px;
    min-height: 160px;

}



.training-service-card .card-title {
    font-size: 18px;
    line-height: 24px;
    color: #51308F;
    font-family: 'avenir_nextdemi_bold';
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 0;
}

.training-service-card .card-description {
    font-size: 14px;
    line-height: 20px;
    color: #424242;
    margin: 0;
}

.wishlist-title-container{
    display: none !important;
}

.wishlist_table  thead {
    background-color: #3F006F !important;
}

.wishlist_table  thead th {
      background-color: #3F006F !important;
    color: #FFFFFF;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    font-size: 16px;
    padding: 5px 10px;
    text-align: left;
    white-space: nowrap;
}

table.wishlist_table thead th, table.wishlist_table tbody td{
    border: none !important;
}

table.wishlist_table {
    width: 100% !important;
}

.woocommerce table.shop_table.wishlist_table tr td{
    font-size: 16px !important;
}

.product-add-to-cart{
    display: flex !important;
    justify-content: flex-end;
    gap: 10px;
}

.add_to_cart_button{
      width: auto;
      padding:9px 15px;
      font-size: 15px;
      border-radius: 25px;
      background: #502E91;
      color: #fff;
      margin: 0 !important;
}

.wishlist_table .product-add-to-cart a.button{
   width: auto;
    padding: 9px 15px !important;
    border-radius: 25px;
     font-size: 15px;
    background: #aa0000;
    color: #fff;
    margin: 0 !important;
}

.wishlist_table .product-add-to-cart a{
     margin: 0 !important;
}

/* Responsive Styles for Training Service Page */
@media (max-width: 992px) {
    .training-service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .training-service-page .fourth_title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .training-service-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .training-service-card {
        padding: 20px;
        min-height: auto;
    }
    
    .training-service-card .card-title {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 12px;
    }
    
    .training-service-card .card-description {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 576px) {
    .training-service-page .fourth_title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .training-service-card {
        padding: 20px;
    }
    
    .training-service-card .card-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 10px;
    }
    
    .training-service-card .card-description {
        font-size: 14px;
        line-height: 20px;
    }
}


/*wishlist*/

.programs-list{
       width: 100%;
       margin-top: 30px;
}


.programs-list > ul{
       display: grid;
       gap: 20px;
       grid-template-columns: repeat(3,1fr);
}

.programs-list > ul .featured-last_box ul{
    gap: 15px;
}

.programs-list > ul .programs_content{
        padding: 25px 20px;
        top: 67%;
}

.programs-list .programs_content h3{
       font-size: 18px;
}

.programs-list .programs_content p{
       font-size: 12px;
}

.programs-list .featured-last_box ul label{
    font-size: 12px;
        line-height: 18px;
}

.programs-list .featured-last_box ul span{
       font-size: 14px;
           line-height: 18px;
           margin-top: 0;
}

.programs-list  .btn_main {
    min-width: 150px;
    padding: 0 40px 0 15px;
        line-height: 40px;
        height: 40px;
        font-size: 12px;
}

.programs-list .programs_content .blue_btn {
     min-width: 150px;
     line-height: 40px;
        height: 40px;
         font-size: 12px;
    text-align: center;
    justify-content: center;
}

.programs-list .btn_main::after{
        width: 32px;
    height: 32px;
}

.programs-list .featured-center_btn{
    gap: 5px;
}

.programs-list .programs_list_item{
      height: 510px;
}

.programs-list .btn_main.white-btn::after{
      background-size: 64px;
}

.clearall{
      font-size: 18px;
          font-family: 'avenir_nextmedium';
    font-weight: 500;
    color: #6C489C;
    text-decoration: underline;
}

/* Certificates Page Styles */
.certificates-page {
    width: 100%;
    padding-bottom: 50px;
}



.certificates-table-section {
    width: 100%;
    margin-top: 30px;
}

/* Status Completed */
.status-completed {
    color: #7FBD61;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    font-size: 16px;
}

/* Download Link */
.download-link {
    color: #6C489C;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    font-size: 16px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.download-link:hover {
    color: #7EBE63;
}

/* Pagination Styles */
.certificates-pagination {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
}

.pagination-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination-arrow:hover {
    background-color: #502E91;
    border-color: #502E91;
}

.pagination-arrow:hover img {
    filter: brightness(0) invert(1);
}

.pagination-arrow img {
    width: 25px;
    transition: filter 0.3s ease;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 3px;
}

.pagination-number {
    min-width: 30px;
    height: 30px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #424242;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background-color: #EBE4F3;
    color: #6C489C;
}

.pagination-number.active {
    background-color: #EBE4F3;
    border-color: #502E91;
    color: #502E91;
}

.pagination-ellipsis {
    color: #424242;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    font-size: 16px;
    padding: 0 5px;
}

/* Responsive Styles for Certificates Page */
@media (max-width: 992px) {
    .certificates-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .certificates-filters {
        width: 100%;
        justify-content: space-between;
    }
    
    .certificates-search-input {
        width: 250px;
    }
}

@media (max-width: 900px) {
    .certificates-header {
        margin-bottom: 25px;
    }
    
    .certificates-title {
        font-size: 28px;
    }
    
    .certificates-filters {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .certificates-search-wrapper,
    .certificates-search-input {
        width: 100%;
    }
    
    .certificates-filter-dropdown {
        width: 100%;
    }
    
    .certificates-table-section {
        margin-top: 25px;
    }
    
    .certificates-pagination {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .certificates-title {
        font-size: 24px;
    }
    
    .certificates-title::after {
        width: 80px;
        height: 2px;
    }
    
    .pagination-numbers {
        gap: 5px;
    }
    
    .pagination-number {
        min-width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .pagination-arrow {
        width: 35px;
        height: 35px;
    }
}

/* Notifications Page Styles */
.notifications-page {
    width: 100%;
    padding-bottom: 50px;
}

.notifications-page .fourth_title {
    margin-bottom: 10px;
}

.notifications-list {
    width: 100%;
    overflow: hidden;
}

.notification-item {
    width: 100%;
    padding: 25px 0;
    border-bottom: 1px solid #E6E6E6;
   
}


.notification-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.notification-message {
    flex: 1;
    margin: 0;
}

.notification-time {
    font-size: 16px;
    line-height: 20px;
    color: #9F7FC9;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Responsive Styles for Notifications Page */
@media (max-width: 900px) {
    .notifications-page .fourth_title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .notification-item {
        padding: 15px 20px;
    }
    
    .notification-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .notification-message {
        font-size: 15px;
        line-height: 22px;
    }
    
    .notification-time {
        font-size: 13px;
        align-self: flex-end;
    }
}

@media (max-width: 576px) {
    .notifications-page .fourth_title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .notification-item {
        padding: 15px;
    }
    
    .notification-message {
        font-size: 14px;
        line-height: 20px;
    }
    
    .notification-time {
        font-size: 12px;
    }
}


/* Complaints Page Styles */
.complaints-page {
    width: 100%;
    padding-bottom: 50px;
}

.complaints_register_inner{
       width: 100%;
       max-width: 690px;
}

.complaints-page .fourth_title {
    margin-bottom: 30px;
}

.complaints-intro {
    width: 100%;
    margin-bottom: 40px;
}



.complaints-intro p:last-child {
    margin-bottom: 0;
}

.complaints-form {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.complaints-form .form-group {
    width: 100%;
    margin-bottom: 15px;
}

.complaints-form .form-group label {
    font-size: 14px;
    line-height: 22px;
    color: #171717;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.complaints-form .complaint-textarea {
    width: 100%;
    min-height: 175px;
    padding:10px 20px !important;
    border: 1px solid #E6E6E6 !important;
    border-radius: 10px !important;
    line-height: 27px;
    background-color: #fff;
    outline: none;
    transition: border-color 0.3s ease;
    resize: none;
}

.complaints-form .complaint-textarea:focus {
    border-color: #6C489C;
}

.complaints-form-actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.complaints-form-actions .btn_main{
       justify-content: center;
}

/* Responsive Styles for Complaints Page */
@media (max-width: 900px) {
    .complaints-page .fourth_title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .complaints-intro {
        margin-bottom: 30px;
    }
    
    .complaints-intro p {
        font-size: 15px;
        line-height: 22px;
    }
    
    .complaints-form .form-group {
        margin-bottom: 25px;
    }
    
    .complaints-form .complaint-textarea {
        min-height: 150px;
        padding: 15px;
    }
    
    .complaints-form-actions {
        margin-top: 25px;
    }
}

@media (max-width: 576px) {
    .complaints-page .fourth_title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .complaints-intro {
        margin-bottom: 25px;
    }
    
    .complaints-intro p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .complaints-form .form-group label {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .complaints-form .complaint-textarea {
        min-height: 120px;
        padding: 12px;
        font-size: 15px;
    }
    
    .complaints-form-actions {
        margin-top: 20px;
        justify-content: center;
    }
    
    .complaints-form-actions .btn_main {
        width: 100%;
        max-width: 300px;
    }
}


.support-page .fourth_title{
       margin-bottom: 15px;
}

.support-content{
       width: 100%;
       margin-top: 0px;
}

.support-content .faq_question h3{
    font-size: 18px;
}

.support-content .faq_list{
       margin-top: 35px;
}


.support-support{
       width: 100%;
       margin-top: 50px;
}

.support-support .fourth_title{
       color: #2D2D2D;
       font-size: 34px;
       line-height: 40px;
       font-family: 'avenir_nextbold';
       font-weight: 700;
       margin-bottom: 30px;
}

.contact-support-cards{
       width: 100%;
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 10px;
}

.contact-support-card{
       background-color: #FFFFFF;
       border: 1px solid #E0E0E0;
       border-radius: 10px;
       padding: 15px;
       display: flex;
       flex-wrap: wrap;
       align-items: center;
}

.contact-icon-wrapper{
       width: 60px;
       height: 60px;
       background-color: #E6F5E6;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
}

.contact-icon-wrapper svg{
       width: 24px;
       height: 24px;
}

.contact-card-title{
       font-size: 16px;
       line-height: 20px;
       color: #51308F;
       font-family: 'avenir_nextdemi_bold';
       font-weight: 700;
       margin: 0;
}

.contact-card-description{
       font-size: 14px;
       line-height: 20px;
       color: #424242;
       margin: 0;
}

.contact-card-description a{
       color: #616161;
       text-decoration: underline;
       transition: color 0.3s ease;
}

.text-deoration-none{
      text-decoration: none !important;
}

.contact-card-description a:hover{
       color: #6A1B9A;
}

.contact-icon-content{
        width: calc(100% - 60px);
        padding-left: 10px;
}

/* Responsive Styles for Contact Support Cards */
@media (max-width: 992px) {
       .contact-support-cards{
              grid-template-columns: repeat(2, 1fr);
              gap: 20px;
       }
}

@media (max-width: 900px) {
       .support-support .fourth_title{
              font-size: 28px;
              line-height: 32px;
              margin-bottom: 25px;
       }
       
       .contact-support-cards{
              grid-template-columns: 1fr;
              gap: 10px;
       }
       
       .contact-support-card{
              padding: 25px 20px;
       }
       
       .contact-icon-wrapper{
              width: 55px;
              height: 55px;
              margin-bottom: 18px;
       }
       
       .contact-card-title{
              font-size: 17px;
              line-height: 23px;
       }
       
       .contact-card-description{
              font-size: 15px;
              line-height: 21px;
       }
}

@media (max-width: 576px) {
       .support-support .fourth_title{
              font-size: 24px;
              line-height: 28px;
              margin-bottom: 20px;
       }
       
       .contact-support-card{
              padding: 20px 15px;
       }
       
       .contact-icon-wrapper{
              width: 50px;
              height: 50px;
              margin-bottom: 15px;
       }
       
       .contact-icon-wrapper svg{
              width: 20px;
              height: 20px;
       }
       
       .contact-card-title{
              font-size: 16px;
              line-height: 22px;
              margin-bottom: 8px;
       }
       
       .contact-card-description{
              font-size: 14px;
              line-height: 20px;
       }
}

.profile-page .fourth_title{
       margin-bottom: 35px;
}


.profile-pag_edit_area{
        width: 100%;
        padding: 40px 30px;
        border: 1px solid #E6E6E6;
        border-radius: 10px;
        margin-bottom: 20px;
}

.profile-pag_edit_area h4{
       font-size: 28px;
      line-height: 30px;
    color: #171717;
    font-family: 'avenir_nextbold';
    font-weight: bold;
}

.profile-page-form{
    width: 100%;
       margin-top: 35px;
}

.profile-page-form .btn_main{
      margin-top: 40px;
}

.certificates-listing{
      width: 100%;
    margin-top: 30px;
}

.certificates-listing ul{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 15px;
}

.certificates-listing ul li{
      width: 100%;
      min-height: 76px;
 
      border: 1px solid #E6E6E6;
      background-color: #FFFFFF;
      border-radius: 10px;
      transition: all 0.3s ease-in-out;
}

.certificates-listing ul li:hover{
    background-color: #502E91;
    color: #fff;
}

.certificates-listing ul li a{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
 padding: 20px;

}

.certificates-list-name{
    width: calc(100% - 40px);
      position: relative;
      padding-left: 45px;
}

.certificates-list-name img{
       position: absolute;
       left: 0;
       margin: auto;
       top: 0;
       bottom: 0;
}

.certificates-download{
    width: 40px;
       display: flex;
       justify-content: flex-end;
}

.certificates-list-name h3{
       font-size: 16px;
       line-height: 20px;
       color: #171717;
          font-family: 'avenir_nextmedium';
font-weight:500;
  transition: all 0.3s ease-in-out;
}

.certificates-listing ul li:hover .certificates-list-name h3{
        color: #fff;
}

.certificates-listing ul li img{
 transition: all 0.3s ease-in-out;
}

.certificates-listing ul li:hover img{
       filter: brightness(0) invert(1);
}



.redeem-coupon-page {
    padding: 20px 0;
}

.redeem-coupon-header {
    margin-bottom: 30px;
}

.redeem-coupon-header h2 {
    margin-bottom: 10px;
    font-size: 28px;
    color: #333;
}


.available-coupons-section,
.redeemed-coupons-section {
    margin-bottom: 40px;
}

.available-coupons-section h3,
.redeemed-coupons-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.section-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.coupon-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.coupon-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.coupon-code {
    font-family: monospace;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.coupon-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-available {
    background: #e7f7e7;
    color: #2d7a2d;
}

.coupon-details {
    margin-bottom: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
}

.detail-label {
    color: #666;
    font-weight: 500;
}

.detail-value {
    color: #333;
    text-align: right;
}

.coupon-actions {
    margin-top: 15px;
}

/* .btn-redeem {
    width: 100%;
    padding: 12px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-redeem:hover {
    background: #005a87;
} */

.btn-redeem:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.no-coupons-message {
    text-align: center;
    padding: 40px 20px;
    background: #EBE4F3;
    border-radius: 10px;
}

.no-coupons-message p {
    margin-bottom: 10px;
}

.coupons-table-wrapper {
    overflow-x: auto;
}

.coupons-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.coupons-table th,
.coupons-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.coupons-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.coupons-table tr:hover {
    background: #f9f9f9;
}

.enrollment-status {
padding: 4px 15px;
    border-radius: 44px;
    font-size: 14px;
    font-weight: 500;
    background: #e7f7e7;
    color: #2d7a2d;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
}

.view-progress-link {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.view-progress-link:hover {
    text-decoration: underline;
}

/* Notification styles */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.notification-toast {
    background: white;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.notification-icon {
    font-size: 20px;
}

.notification-message {
    flex: 1;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .coupons-grid {
        grid-template-columns: 1fr;
    }
    
    .coupons-table {
        font-size: 14px;
    }
    
    .coupons-table thead {
        display: none;
    }
    
    .coupons-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
    }
    
    .coupons-table td {
        display: flex;
        justify-content: space-between;
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
    }
    
    .coupons-table td:last-child {
        border-bottom: none;
    }
    
    .coupons-table td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #666;
    }
}


.refund_popup_content{
    margin-top: 15px;
}

.refund_popup_content ul{
       display:flex;
       flex-wrap: wrap;
       row-gap: 20px;
}

.refund_popup_content ul li{
    width: 100%;
}

.refund_popup_content ul li label{
    font-size: 16px;
    color: #502E91;
     font-family: 'avenir_nextmedium';
font-weight:500;
margin-bottom: 5px;
display: block;
}

.refund_popup_content ul li h3{
    font-family: 'avenir_nextdemi_bold';
    font-size: 20px;
    line-height: 28px;
    color: #171717;
    margin-bottom: 5px;
}

.refund_popup_content ul li h5{
    font-size: 14px;
    line-height: 20px;
    color: #9F7FC9;
        font-family: 'avenir_nextmedium';
font-weight:500;
}

.refund_popup_bottom{
    border-top: 1px solid #E6E6E6;
    padding-top: 10px;
}

.refund_popup_bottom p{
    font-size: 16px;
}

.refund_popup_bottom p strong{
    font-family: 'avenir_nextdemi_bold';
    font-weight: 700;
}


.redeemed-coupons-section{
    padding-top: 50px;
}

.redeemed-coupons-section h2 {
    margin-bottom: 10px;
    font-size: 28px;
    color: #333;
}


table.wishlist_table tr th{
    color: #FFFFFF !important;
    font-family: 'avenir_nextmedium';
    font-weight: 500 !important;
    font-size: 16px !important;
    padding: 5px 10px !important;
    text-align: left;
    white-space: nowrap;
}

.woocommerce table.shop_table{
    border: none;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    overflow: hidden !important;
}


table.wishlist_table tr td {
    color: #424242 !important;
    font-family: 'avenir_nextmedium';
    font-weight: 500 !important;
    font-size: 16px !important;
    padding: 15px 10px !important;
    vertical-align: middle;
        text-align: left !important;
}

table.wishlist_table tr {
    border-bottom: 1px solid #E6E6E6;
    transition: background-color 0.3s 
ease;
}

.woocommerce table.shop_table.wishlist_table tr td.product-add-to-cart{
    padding-top: 24px !important;
}

.wishlist_table .product-remove .remove_from_wishlist{
       display: none !important;
}


.dashboard-table.cart .product-thumbnail{
    border: none;
}

.coupon{
       width: 40%;
       display: flex;
       position: relative;
}

.coupon input {
   width: 100% !important;
    padding: 0px 15px !important;
    height: 45px !important;
    line-height: 45px;
    padding-right: 110px !important;
    border-radius: 60px;
    font-size: 14px !important;
    color: #424242;
    background: #fff;
    border: none;
    outline: none;
}

.coupon .button {
      width: 90px;
    height: 39px;
    line-height: 39px;
    padding: 0 15px;
    color: #fff;
    background: #6C489C;
    /* background-color: transparent; */
    border: none;
    position: absolute;
    top: 3px;
    right: 15px;
    border-radius: 50px;
    font-family: 'avenir_nextmedium';
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.dashboard-table.cart .btn_main{
        min-width: 165px;
}


.cart_totals.calculated_shipping{
    width: 100%;
    background-color: #EBE4F3;
    padding: 30px;
    margin-top: 50px;
        border-radius: 20px;
}

.woocommerce-page table.shop_table td, .woocommerce-page table.shop_table th{
    color: #424242;
    font-family: 'avenir_nextmedium';
    font-weight: 500;
    font-size: 16px;
    padding: 15px 10px;
    vertical-align: middle;
}

.woocommerce table.shop_table tbody th{
    font-family: 'avenir_nextdemi_bold';
    color: #171717;
    font-size: 18px;
}

.cart_totals.calculated_shipping h2{
    font-size: 36px;
    font-family: 'avenir_nextbold';
    font-weight: 700;
    color: #171717;
    padding: 0 10px;
    margin: 0 0 20px 0;
}

.wc-block-components-notice-banner.is-info {
    background-color: #7fbd6121 !important;
    border-color: #7fbd61 !important;
        font-size: 16px;
    color: #171717;
      font-family: 'avenir_nextmedium';
    font-weight: 500;
}

.wc-block-components-notice-banner.is-info>svg {
    background-color: #502e91 !important;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    float: right;
    width: 100%;
    max-width: 400px;
 background: #EBE4F3;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    padding: 20px;
    margin-top: 50px;
}

.return-to-shop{
    margin-top: 50px;

}

.woocommerce-cart-form__cart-item.cart_item .product-name a{
     color: #502e91 !important;
     font-size: 18px;
} 

.wc-block-components-notice-banner{
    border: none !important;
    outline: none !important;
}

.woocommerce-cart-form__cart-item.cart_item .quantity input{
      width: 80px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #171717;
    text-align: center;
    border-radius: 25px;
    border: 1px solid #e6e6e6;
} 

.product-details-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap:30px 20px;
      padding-bottom: 15px;
    margin-top: 20px;

}

.dashboard-table tbody td.product-details-cell{
    background: #EBE4F3;
    padding: 15px 20px;
}

.product-details-content h3{
       font-size: 22px;
       color: #171717;
}

.product-details-grid .detail-item{
       width: 100%;
}

.product-details-grid .detail-item strong{
       width: 100%;
       display: block;
       font-size: 14px;
       color: #767676;
        font-family: 'avenir_nextmedium';
    font-weight: 500;
    margin-bottom: 10px;
}

.product-details-grid .detail-item{
       color: #171717;
       font-size: 16px;
          font-family: 'avenir_nextmedium';
    font-weight: 500;
}


.view-link.btn-b2c-refund{
        background: #3f006f;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 14px;

}


@media (max-width: 1600px) {

.product-details-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:30px 20px;
      padding-bottom: 15px;
    margin-top: 20px;

}

}

@media (max-width: 1300px) {
.product-details-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:20px 15px;
      padding-bottom: 15px;
    margin-top: 20px;

}
}


@media (max-width: 900px) {
.product-details-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:20px 15px;
      padding-bottom: 15px;
    margin-top: 20px;

}

.dashboard-table tbody tr.product-details-row{
     background: #ffffff;
}

.dashboard-table tbody td.product-details-cell{
    background: #ffffff;
    padding: 10px 10px;
}

}



.select_instance_btns{
     display: flex;
     flex-wrap: wrap;
     justify-content: right;
     margin-top: 30px;
     gap: 10px;
}

.select_instance_btns .btn_main{
      min-width: 150px;
      justify-content: center;
}


#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.notification-toast {
    background: white;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
    animation: slideInRight 0.3s ease-out;
}

/* Table hover effects */
.btn-select-schedule:hover {
    background: #4a3ad8 !important;
    transform: scale(1.05);
}

.schedule-row.selected {
    background: #f0f4ff !important;
}

/* Responsive table */
@media (max-width: 768px) {
    .schedules-table thead {
        display: none;
    }

    .schedules-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e9ecef;
        border-radius: 8px;
    }

    .schedules-table td {
        display: block;
        text-align: right;
        padding: 10px 15px !important;
        border-bottom: 1px solid #f8f9fa;
    }

    .schedules-table td:before {
        content: attr(data-label);
        float: left;
        font-weight: 600;
        color: #666;
    }

    .schedules-table td:last-child {
        text-align: center;
        border-bottom: none;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.notification-icon {
    font-size: 20px;
}

.notification-message {
    flex: 1;
    color: #333;
    font-size: 14px;
}

/* Old styles - keeping for compatibility */

.select-instance-redeem-page {
    padding: 40px 0;
    background: #f5f5f5;
    min-height: 100vh;
}


.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.page-header p {
    color: #666;
    font-size: 16px;
}

.coupon-info-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.coupon-info-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-item .label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.info-item .value {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.instances-section {
    margin-bottom: 40px;
}

.instances-section h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.section-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.instances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.instance-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.instance-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.instance-header h4 {
    font-size: 18px;
    color: #333;
    margin: 0;
    flex: 1;
}

.seats-badge {
    background: #46b450;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.instance-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.detail-label {
    color: #666;
    font-weight: 500;
}

.detail-value {
    color: #333;
    text-align: right;
}

.instance-actions {
    margin-top: 20px;
}

.btn-select-instance {
    width: 100%;
    padding: 14px 20px;
    background: #502E91;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-instance:hover {
    background: #7FBD61;
}

.btn-select-instance:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.back-link {
    text-align: center;
    margin-top: 30px;
}

.back-link a {
    color: #502E91;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.back-link a:hover {
    text-decoration: underline;
}

/* Notification styles */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.notification-toast {
    background: white;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.notification-icon {
    font-size: 20px;
}

.notification-message {
    flex: 1;
    font-size: 14px;
}




.b2c-refund-confirm-modal_box{
       width: 100%;
       max-width: 650px;
       margin: 0 auto;
       padding: 30px;
       background-color: #fff;
       -webkit-border-radius: 20px;
       border-radius: 20px;
       position: relative;
       z-index: 10000;
}

.b2c-refund-confirm-modal_box h3{
    font-size: 26px;
    line-height: 30px;
    color: #171717;
    margin-bottom: 25px;
}



.b2c-refund-confirm-modal_box_btns{
    margin-top: 30px;
    display: flex; gap: 15px; justify-content: flex-end;
}

.b2c-refund-confirm-modal_box_btns .btn_main{
         min-width: 100px;
         justify-content: center;
}

.btn_secondary{
    min-width: 100px;
    background-color: #fff;
    border: 1px solid #9F7FC9;
    border-radius: 45px;
    font-size: 16px;
    padding: 0 25px;
    line-height: 45px;
    height: 45px;
    color: #502E91;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* B2C Refund Confirmation Modal Styles */

.course-instances-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
}

.course-instance-item {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.course-instance-item:hover {
    border-color: #6b2fb5;
    background: #f9f9f9;
}

.course-instance-item.selected {
    border-color: #6b2fb5;
    background: #f3e5f5;
}

.course-instance-item h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #171717;
}

.course-instance-item p {
    margin: 4px 0;
    font-size: 14px;
    color: #414141;
}

.course-instance-item .instance-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.course-instance-item .instance-meta span {
    font-size: 14px;
    color: #414141;
}



/* Responsive */
@media (max-width: 768px) {
    .instances-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }

    .b2c-refund-confirm-modal_box{
        max-width: 90% !important;
            padding: 20px;
                -webkit-border-radius: 10px;
    border-radius: 10px;
    }
}


