:root {
    --primary-color: #FF9900;
    --secondary-color: #1F1F1F;
    --white-color: #FFFFFF;
    --small-text-color: #7A7A7A;
    --font-family: 'Roboto', sans-serif;
    --btn-padding: 0.50rem 1.2rem;
    --border-radius: 1.875rem;
    --btn-radius: 0.5rem;
}

body {
    font-family: var(--font-family);
}

html { scroll-behavior: smooth; }
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 35px;
    height: 60px;
    border-radius: 23px;
    background: rgba(255, 153, 0, 0.50);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1000;
}

#scrollTopBtn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}
.whatsapp_floating{
    position: fixed;
    bottom: 99px;
    right: -435px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1000;
}
button:focus, .btn-enroll:focus, a:focus, input:focus, .form-select {
    outline: none !important;
    box-shadow: none !important;
}
.top-bar {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 0.875rem;
}
.contact-info a {
    font-size: 1rem;
}
.navbar-nav {
    gap: 0.5rem;
}
.nav-item .active {
    color: var(--primary-color) !important;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}
.nav-item:hover a{
    color: var(--primary-color) !important;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}
.btn-enroll {
    background-color: var(--primary-color);
    color: white;
    padding: var(--btn-padding);
    border-radius: var(--btn-radius);
}
.btn-no-more{
    background-color: transparent;
    padding: var(--btn-padding);
    border-radius: var(--btn-radius);
    border: 1px solid #CBCBCB;
    color: #282828;
    font-weight: 500;
}
/* mobile menu */
.offcanvas-body{
    padding: 0;
}
.navbar-nav{
    gap: 0;
}
.offcanvas-body .nav-item{
    border-top: 1px solid #EBEBEB;
    border-bottom: 1px solid #EBEBEB;
}
.navbar-nav .nav-link{
    color: #737373;
    padding: 0.9rem;
}
.mobile-contact a{
    color: #737373;
    padding: 0.5rem 0.9rem;
}
.offcanvas-header .btn{
    padding: 0;
}
.offcanvas-body .nav-item .active{
    background: linear-gradient(270deg, #BE7000 0%, #F90 100%);
    color: var(--white-color) !important;
    text-decoration: none;
    padding: 0.9rem;
}
.offcanvas-header{
    background-color: #000000;
}
.offcanvas-start{
    border-right: none;
}
.navbar{
    position: sticky;
    z-index: 99;
    top: 0;
}
/* mobile menu end */

.hero {
    background: url('../images/banner.png') no-repeat center center;
    background-size: cover;
    color: white;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-title, .hero-title-in {
    font-size: 5.75rem;
    color: var(--primary-color);
    line-height: 6rem;
}
.hero-title-2, .hero-title-3 {
    font-size: 6.25rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 6rem;
}
.highlight {
    background-image: linear-gradient(to top, #000000 30%, transparent 30%);
    background-repeat: no-repeat;
    background-size: 0% 40%;         /* start hidden */
    background-position: 0 77%;
    padding: 0 2px;
    animation: highlightGrow 3s ease forwards;
}

@keyframes highlightGrow {
    from {
        background-size: 0% 40%;
    }
    to {
        background-size: 100% 40%;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #000000;
    font-family: josefin sans, sans-serif;
    font-weight: 400;
}

.who-we-are{
    border-radius: 0 0 32px 32px;
    background: linear-gradient(180deg, rgba(245, 246, 251, 0.00) 0%, #F5F6FB 100%);
}
.badge {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0;
    display: flex;
    align-items: center;
}
.heading{
    font-size: 3.818rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-top: 10px;
    text-transform: capitalize;
}
.who-we-are .accordion-item {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: transparent;
}

.who-we-are .accordion-button:not(.collapsed)::after {
    background-image: url('../icons/minus.svg');
}
.who-we-are .accordion-button::after {
    background-image: url('../icons/plus.svg');
}
.who-we-are .accordion-button {
    /* background: transparent; */
    font-size: 20px;
    font-weight: 500;
    color: #232323;
    box-shadow: none;
    border: none;
}
.who-we-are .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    /* border: 1px solid #E5E5E5;  */
    border-bottom: none !important;
    border-radius: 1.5rem 1.5rem 0 0;
    transition: none;
}
.who-we-are .accordion-collapse {
    transition: none;
}
.who-we-are .accordion-collapse.show {
    background: #ffffff;
    /* border: 1px solid #E5E5E5; */
    border-top: none;
    border-radius: 0 0 24px 24px;
    transition: none;
}
.who-we-are .accordion-body {
    font-size: 1rem;
    color: var(--small-text-color);
    line-height: 1.8;
    padding: 1rem 1.25rem;
}

.who-we-are .custom-card:hover {
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
}
.custom-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 1.25rem;
    box-shadow: 0 0.375rem 1.125rem rgba(34, 43, 63, 0.08);
    overflow: hidden;
}

.custom-card-title {
    font-size: 1rem;
    margin: 0 0 0.6rem 0;
    font-weight: 500;
    color: #232323;
}
.custom-card-text {
    color: #6b6b6b;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.custom-card-link {
    display: inline-block;
    padding: 0.375rem;
    text-transform: uppercase;
    border-radius: 0.25rem;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.custom-card-link:hover {
    background: #F1F1F1;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.625rem;
}

.card-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}
.card-right-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    display: block;
    object-fit: cover;
    box-shadow: 0 0.375rem 1.125rem rgba(34, 43, 63, 0.06);
}
.img-badge {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 0.75rem;
    box-shadow: 0 0.375rem 1.125rem rgba(34, 43, 63, 0.08);
    line-height: 1;
    pointer-events: none;
}
.img-badge .badge-small {
    font-size: 1rem;
    color: #898989;
    margin-bottom: 0.25rem;
}
.img-badge .badge-big {
    font-size: 3.25rem;
    font-weight: 500;
    color: #232323;
}

.custom-card .row > [class*="col-"] {
    min-height: 100%;
}
.what-we-offer{
    background: url('../images/bg_what_is_offer.png') no-repeat center center;
    background-size: cover;
}
.courseSwiper {
    padding-top: 10px;
    padding-bottom: 5rem;
}
.course_card {
    border: 1px solid #CACACA !important;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease,
    box-shadow 0.3s ease;
}
.course_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.course_card .card-body{
    padding: 15px 15px 12px 15px;
}
.course_card .price {
    font-size: 1rem;
    font-weight: 500;
    color: #575757;
}
.course_card .price small {
    font-size: 0.9rem;
}
.course_rating{
    color: var(--primary-color);
}
.card-title{
    color: #464646;
}
.course_card .meta{
    border-bottom: 1.5px solid #CBCBCB;
    padding-bottom: 0.5rem;
}
.swiper-slide {
    cursor: pointer;
}
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    /* margin-top: -25px; */
    position: absolute;
    top: 92%;
    background: #ff9500;
    border-radius: 50%;
    color: white !important;
}
.swiper-button-next {
    left: 51%;
}
.swiper-button-prev {
    left: 45%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff9800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none !important;
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #e68400;
}
.why-choose-us .badge, .testimonial_section .badge, .instructors-section .badge{
    justify-content: center;
}

.why-choose-us .main{
    position: relative;
}
.why-choose-us .cn-bg-image{
    position: absolute;
    top: -11%;
    right: -2%;
    z-index: -2;
}
.icon-card {
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    padding: 24px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.icon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.icon-card .icon {
    margin-bottom: 12px;
}

.icon-card .icon img {
    width: 40px;
    height: 40px;
}

.icon-card h5 {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: #232323;
}

.icon-card p {
    font-family: josefin sans, sans-serif;
    font-size: 1.125rem;
    color: #898989;
}
.certificate-partners .sub-heading {
    font-size: 24px;
    color: #898989;
}
.certificate-partners .cert_text {
    font-size: 24px;
}
.testimonial_section{
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(245, 246, 251, 0.50) 0%, rgba(245, 246, 251, 0.13) 50%, rgba(245, 246, 251, 0.50) 100%);
}
.testimonial_section .heading{
    line-height: 2.5rem;
}
.testimonial_section .sub-heading{
    font-size: 2.25rem;
    line-height: 3.313rem;
}

.testimonial {
    border: 1px solid #d7d7d7;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(18,34,46,0.06);
    /* padding: 18px; */
    padding: 15px 10px 10px 15px;
    max-width: 520px;
}

.testimonial .hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
    margin-bottom: 10px;
}

.author {
    display: flex;
    gap: 12px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #e9ecef;
    flex-shrink: 0;
}
.avatar img {
    width: 100%;
    height: 100%;
    /* object-fit: cover;  */
    display:block;
}

.author .name {
    font-weight: 700;
    font-size: 0.98rem;
    color: #111;
    display:flex;
    align-items:center;
    gap:8px;
}
.author .role {
    font-size: 0.82rem;
    color: #797979;
}

.date {
    font-size: 0.85rem;
    color: var(--small-text-color);
}

.stars {
    margin: 6px 0;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.divider {
    height: 1px;
    background: rgba(18,34,46,0.04);
    margin: 5px 0 5px;
    border-radius: 1px;
}

.text {
    color: var(--small-text-color);
    line-height: 1.6;
    text-align: start;
}
.testimonial_section .swiper-button-next, .testimonial_section .swiper-button-prev{
    top: 87%;
}
.help_center .heading{
    line-height: 4.3rem;
}
.help_center .badge{
    justify-content: start;
}
.help_center .faq_clip_img img{
    margin-top: -80px;
    margin-left: -50px;
}
/* FAQ styling */
.faq-accordion .accordion-item {
    border: 0;
    border-bottom: 1.5px solid rgba(18,34,46,0.06);
    padding: 0;
    background: transparent;
}
.faq-accordion .accordion-item:first-child {
    border-top: 0;
}
.faq-accordion .accordion-button {
    background: transparent;
    padding: 1.25rem 1rem;
    font-size: 1.75rem;
    font-weight: 500;
    color: #282828;
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    display: none;
}

.faq-accordion .faq-caret {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: transform .25s ease;
    color: #222;
    font-size: 1.1rem;
}

.faq-accordion .accordion-button[aria-expanded="true"] .faq-caret {
    transform: rotate(180deg);
}

.faq-accordion .accordion-body {
    padding: 0 3rem 1rem 1.25rem ;
    color: #898989;
    font-size: 1.25rem;
}


/* Top contact section */
.contact-hero {
    background: #232323;
    padding-top: 4rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.contact-hero .contact{
    background: #373737;
    color: var(--muted-white);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}
.contact-hero .contact-icons {
    margin-top: 28px;
    display:flex;
    gap: 18px;
    align-items:center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}
.contact-hero .contact-icons i {
    font-size: 1rem;
    margin-right:8px;
    vertical-align:-1px;
}
.contact-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(22, 22, 22, 0.18);
    padding: 26px;
}
.contact-hero .badge{
    margin-bottom: 9rem;
}
.contact-hero .form-control, .contact_us .form-control {
    border: none;
    border-bottom: 1px solid #e6e6e6;
    border-radius: 0;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
}
/* .contact_us .form-select {
    border: none;
    border-bottom: 1px solid #e6e6e6;
    padding: .375rem 2.25rem .375rem 0;
} */
.contact-hero .form-control:focus, .contact_us .form-control:focus {
    box-shadow: none;
    border-color: #ddd;
}
.contact_us .contact-card {
    box-shadow: 0 7px 44px 0 rgba(255, 153, 0, 0.20);
}
/* footer section */

.footer {
    background: #232323;
    color: #fff;
    padding: 36px 0;
    border-top: 4px solid rgba(0,0,0,0.2);
}

.footer-nav a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    margin-right: 18px;
    font-size: 0.95rem;
}
.footer-nav a:hover {
    text-decoration: underline;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}
.footer-logo img { max-height: 46px; }

.footer-social a {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:35px;
    height:35px;
    border-radius:50%;
    background: var(--primary-color);
    color:#000;
    margin-left:8px;
    text-decoration:none;
    font-size:20px;
}

.copyright {
    color: #9E9E9E;
    font-size: 0.85rem;
    margin-top: -4rem;
}

.policy-links a {
    color: #9E9E9E;
    text-decoration: none;
    margin-right: 12px;
    font-size: 0.85rem;
}
.policy-links a:hover {
    text-decoration: underline;
}

/* about us page */
.about_p_banner{
    background: url('../images/bannner-about.png') no-repeat center;
    background-size: cover;
    min-height: 250px;
    /* margin-bottom: 10px; */
}
.banner-title{
    font-size: 5.75rem;
    font-weight: 500;
    color: var(--primary-color);
}

.about-who-we{
    background: #ffffff;
}
.about-main{
    gap: 5rem;
}
.about-description{
    color: #898989;
}
.stat-number{
    font-size: 3.5rem;
    color: var(--secondary-color);
}
.stat-label{
    font-size: 1.125rem;
    color: #898989;
}
.vertical-divider {
    width: 1.9px;
    height: 115px;
    background: #898989;
}
.about-service-section .service-card{
    border-radius: 16px;
    box-shadow: 0 7px 44px 0 rgba(255, 153, 0, 0.20);
}
.about-service-title{
    font-size: 1.2rem;
    color: #515151;
}
.about-service-desc{
    font-size: 1rem;
    color: #898989;
}
.about-mission-vision .card{
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    background: rgba(217, 217, 217, 0.12);
}
.about-mission-vision .card .badge{
    background: var(--primary-color);
    border-radius: 20px;
    font-weight: 500;
}
.about-mission-vision .title{
    font-size: 2rem;
    font-weight: 400;
    color: var(--secondary-color);
}
.description{
    font-size: 1rem;
    color: #898989;
}
.instructors-section{
    background-color: #F4F9FF;
    border-radius: 0 0 100px 100px;
}
.instructors-inner .card{
    border-radius: 16px;
    display: flex;
    justify-content: flex-end;
    text-align: left;
    color: var(--white-color);
    height: 320px;
}
.testimonial_new{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.50) 0%, rgba(244, 249, 255, 0.50) 100%);
}
.reviewSwiper{
    padding-bottom: 2rem;
}
.reviewSwiper .swiper-pagination{
    /* text-align: start; */
}
.swiper-pagination-bullet-active{
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 30px;
}
.testimonial_new .card{
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(18,34,46,0.06);
    border: 1px solid rgba(0,0,0,.125);
    padding: 10px;
    max-width: 100%;
    height: auto;
}

.onlineBtn, .offlineBtn {
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: background .2s, color .2s;
}

.onlineBtn:hover, .offlineBtn:hover {
    color: var(--white-color);
    background: linear-gradient(270deg, #BE7000 0%, #FF9900 100%);
}

.onlineBtn.active, .offlineBtn.active {
    color: var(--white-color);
    background: linear-gradient(270deg, #BE7000 0%, #FF9900 100%);
}

.search-pill {
    border-radius: 30px;
    border: 1.5px solid var(--primary-color);
    padding: 4px 20px;
    background: #fff;
}

.search-input {
    border: none;
    outline: none;
    box-shadow: none;
    padding-left: .5rem;
}

.search-pill:focus-within {
    box-shadow: 0 6px 18px rgba(255,159,26,0.12);
}
.pagination{
    gap: 7px;
}
.page-link{
    color: #898989;
    border-radius: 10px;
    background-color: #EAEFF5;
    border: 1px solid transparent;
}
.page-link:hover{
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background: transparent;
}
.page-item.active .page-link{
    color: var(--white-color);
    border-radius: 10px;
    background:#ff9500 !important;
    border: 1px solid transparent;
}
.page-item:first-child .page-link, .page-item:last-child .page-link{
    border-radius: 10px !important;
}

.contact-list {
    max-width: 320px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px 8px;
}

.icon-circle {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: #f29300;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
}

.contact-title {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
}

.contact-sub {
    margin: 0;
    color: #8b8b8b;
    font-size: 0.9rem;
}

.dashboard_profile{
    border-radius: 20px;
    border: 1px solid #EEE;
    box-shadow: 0 4px 24px 0 rgba(196, 196, 196, 0.25);
    /* background: url('../images/dash-bg.png'); */
}
.st_text{
    font-size: 14px;
    font-weight: 400;
    color: #898989;
}
.st_text span {
    font-weight: 500 !important;
}
.st_name{
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
    text-transform: capitalize;
    text-align: left;
    /* display:flex; */
    /* align-items:center; */
    gap:8px;
}

.student_alumini .form-control, .student_alumini .form-select {
    height: 44px;
    border-radius: 6px;
    border: 1px solid #e7e7e7;
    box-shadow: none;
}
.student_alumini .form-control:focus, .student_alumini .form-select:focus { box-shadow: none; border-color:#d0d0d0; }
.student_alumini .search-btn {
    background:#f59e0b;
    color:#fff;
    border-radius:6px;
    height:44px;
    padding:0 14px;
    font-weight:600;
}
.student_alumini .input-icon { position: relative; }
.student_alumini .input-icon .fa-search {
    position: absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);
    color:#9aa0a6;
    font-size:14px;
    pointer-events:none;
}
.student_alumini .input-icon .form-control { padding-left:36px; }
.student_alumini .clear-link { color:#ff8a00; font-size:0.9rem; text-decoration:none; }
.free_badge{
    display: inline-block;
    background: var(--primary-color);
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}
.footer-nav .active{
    color: var(--primary-color);
}
.dashboard-course, .dashboard-course img {
    border-radius: 15px;
}
.student_sidemenu{
    background-color: #FF9900;
}
.dash_card_icon{
    background-color: rgba(255, 230, 0, 0.2);
}
.dash_main, .dash_side{
    border: 1px solid #EEEEEE;
    border-radius: 12px;
}
.notif-dropdown {
    min-width: 395px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(113, 113, 113, 0.75);
    overflow: hidden;
    padding: 0;
}

.notif-dropdown > li:first-child {
    padding: 1rem 1rem 0.5rem;
}

.notif-scroll {
    max-height: 320px;
    overflow-y: auto;
    padding: 0 1rem 0.5rem;
}

.notif-scroll::-webkit-scrollbar {
    width: 6px;
}
.notif-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
.notif-scroll::-webkit-scrollbar-thumb:hover {
    background: #999;
}
.feed-box{
    border-radius: 16px;
    box-shadow: 0 5px 12px 0 rgba(99, 99, 99, 0.12);
}
.key-heighlights ul{
    padding-left: 1rem;
}
.key-heighlights ul li{
    color: #898989;
}
.cs-price{
    font-size: 30px;
    font-weight: 600;
    background: linear-gradient(90deg, #FF9900, #BE7000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.alumin-profile-pic {
    width: 110px;
    height: 125px;
}

/* Professional DataTable Styles */
.dataTables_wrapper {
    margin-top: 20px;
}

#transactions-table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

#transactions-table thead th {
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    border: none;
    padding: 15px 12px;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 2px solid #dee2e6;
}

#transactions-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f9fa;
}

#transactions-table tbody tr:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#transactions-table tbody td {
    padding: 12px 15px;
    vertical-align: middle;
    border: none;
    font-size: 0.9rem;
}

#transactions-table tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

#transactions-table tbody tr:nth-child(even):hover {
    background-color: #f1f3f4;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.paid {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.status-badge.pending {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: #212529;
}

.status-badge.failed {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
    color: white;
}

.status-badge.refunded {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}

/* Action Buttons */
.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

/* DataTable Customization */
.dataTables_length select,
.dataTables_filter input {
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.875rem;
}

.dataTables_length select:focus,
.dataTables_filter input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.dataTables_info {
    color: #6c757d;
    font-size: 0.875rem;
    margin-top: 10px;
}

.dataTables_paginate .paginate_button {
    padding: 6px 12px;
    margin: 0 2px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: white;
    color: #6c757d;
    transition: all 0.3s ease;
}

.dataTables_paginate .paginate_button:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.dataTables_paginate .paginate_button.current {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

/* Responsive Table */
@media (max-width: 768px) {
    #transactions-table {
        font-size: 0.8rem;
    }

    #transactions-table thead th,
    #transactions-table tbody td {
        padding: 8px 6px;
    }

    .status-badge {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}

/* Loading State */
#transactions-table_processing {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#transactions-table tbody tr.status-warning {
    background-color: #fef2f2 !important;
}

#transactions-table tbody tr.status-warning:hover {
    background-color: #fee2e2 !important;
}

#transactions-table tbody tr.status-warning:nth-child(even) {
    background-color: #fef2f2 !important;
}

#transactions-table tbody tr.status-warning:nth-child(even):hover {
    background-color: #fee2e2 !important;
}
