/* ============================================
   GLOBAL ACCENT COLOR (reusable)
   Use --accent-color in your styles or .accent-* classes
   ============================================ */
:root {
    --accent-color: #7f191b;
    --accent-color-hover: #6b1416;
}

/* Accent background */
.bg-accent,
.accent-bg {
    background-color: var(--accent-color) !important;
}
.bg-accent:hover,
.accent-bg:hover {
    background-color: var(--accent-color-hover) !important;
}

/* Accent text color */
.text-accent,
.accent-color {
    color: var(--accent-color) !important;
}

/* Accent border */
.border-accent,
.accent-border {
    border-color: var(--accent-color) !important;
}

/* Accent for links and icons (e.g. menu icons) */
.accent-icon {
    color: var(--accent-color);
}

/* ============================================
   PORTAL HEADER & SIDEBAR (non-admin) – professional
   ============================================ */
.portal-header-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
}
.portal-header {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    border-bottom: 1px solid #e8eaed;
    width: 100%;
}
.portal-header-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.75rem;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.portal-header-brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    color: #202124;
    min-width: 0;
}
.portal-header-logo {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    overflow: hidden;
    background: #f1f3f4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.portal-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.portal-header-title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #202124;
    letter-spacing: 0.01em;
    line-height: 1.35;
}
@media (max-width: 640px) {
    .portal-header-title { display: none; }
}
.portal-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.portal-header-home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.625rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #5f6368;
    text-decoration: none;
    transition: color 0.15s;
}
.portal-header-home-link:hover {
    color: var(--accent-color);
}
.portal-header-user {
    position: relative;
}
.portal-header-user-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #5f6368;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.15s;
}
.portal-header-user-trigger:hover {
    color: #202124;
}
.portal-header-user-chevron {
    width: 0.875rem;
    height: 0.875rem;
    color: #80868b;
}
.portal-header-user-trigger[aria-expanded="true"] .portal-header-user-chevron {
    transform: rotate(180deg);
}
.portal-header-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.25rem;
    min-width: 10rem;
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0.25rem;
    z-index: 50;
}
.portal-header-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 0.625rem;
    font-size: 0.8125rem;
    color: #5f6368;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.12s, color 0.12s;
}
.portal-header-dropdown-item:hover {
    background: #f1f3f4;
    color: #202124;
}
.portal-header-dropdown-item-logout {
    color: #5f6368;
}
.portal-header-dropdown-item-logout:hover {
    color: #c5221f;
    background: #fce8e6;
}
.portal-header-mobile-toggle {
    display: none;
    padding: 0.5rem;
    color: #5f6368;
    background: none;
    border: none;
    cursor: pointer;
}
.portal-header-mobile-toggle:hover {
    color: #202124;
}
@media (max-width: 767px) {
    .portal-header-home-link { display: none; }
    .portal-header-mobile-toggle { display: block; }
}
.portal-header-mobile-menu {
    padding: 0.75rem 1.75rem;
    border-top: 1px solid #e8eaed;
    background: #f8f9fa;
}
.portal-header-mobile-link {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #5f6368;
    text-decoration: none;
}
.portal-header-mobile-link:hover {
    color: #202124;
}
.portal-header-mobile-user {
    padding: 0.5rem 0;
    border-top: 1px solid #e8eaed;
    margin-top: 0.25rem;
}
.portal-header-mobile-user-name {
    display: block;
    font-weight: 500;
    font-size: 0.8125rem;
    color: #202124;
}
.portal-header-mobile-user-email {
    font-size: 0.75rem;
    color: #5f6368;
}
.portal-header-mobile-logout {
    border-top: 1px solid #e8eaed;
    margin-top: 0.25rem;
    padding-top: 0.5rem;
}
[x-cloak] {
    display: none !important;
}

/* Portal sidebar – professional (minimal, left-border active) */
.portal-sidebar {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    width: 100%;
    background: #fff;
    border-right: 1px solid #e8eaed;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
}
.portal-sidebar-nav {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    padding: 0 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}
.portal-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem 0.5rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #5f6368;
    text-decoration: none;
    border: none;
    border-left: 3px solid transparent;
    border-radius: 4px;
    background: transparent;
    transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.portal-sidebar-link i {
    font-size: 1rem;
    width: 1.125rem;
    text-align: center;
    color: #80868b;
    transition: color 0.12s;
}
.portal-sidebar-link:hover {
    background: #e8eaed;
    color: #202124;
    text-decoration: none;
}
.portal-sidebar-link:hover i {
    color: #5f6368;
}
.portal-sidebar-link.active {
    background: rgba(127, 25, 27, 0.08);
    color: #5a1618;
    border-left-color: var(--accent-color);
}
.portal-sidebar-link.active i {
    color: var(--accent-color);
}
.portal-sidebar-link.active:hover {
    background: rgba(127, 25, 27, 0.1);
    color: #4a1214;
    text-decoration: none;
}
.portal-sidebar-link.active:hover i {
    color: var(--accent-color-hover);
}

/* Portal sidebar – mobile: hidden by default, show on burger click */
.portal-sidebar-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: var(--accent-color, #7f191b);
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}
.portal-sidebar-toggle-in-header {
    position: relative;
    flex-shrink: 0;
}
.portal-sidebar-toggle:hover {
    background: rgba(127, 25, 27, 0.08);
    color: var(--accent-color-hover, #6b1416);
}
.portal-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1001;
}
.portal-sidebar-close {
    display: none;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: #5f6368;
    cursor: pointer;
    font-size: 1.25rem;
}
.portal-sidebar-close:hover {
    background: #e8eaed;
    color: #202124;
}
.portal-sidebar-mobile-logo {
    display: none;
}
.portal-sidebar-mobile-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #202124;
    border-bottom: 1px solid #e8eaed;
}
.portal-sidebar-mobile-logo-link:hover {
    text-decoration: none;
    color: #202124;
}
.portal-sidebar-mobile-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}
.portal-sidebar-mobile-logo-title {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
}
@media (max-width: 767px) {
    .portal-sidebar-mobile-logo {
        display: block;
    }
    .portal-sidebar-toggle.portal-sidebar-toggle-in-header {
        display: flex;
    }
    .portal-sidebar-overlay {
        display: none;
    }
    body.portal-sidebar-open .portal-sidebar-overlay {
        display: block;
    }
    .dashboard-sidebar.portal-sidebar {
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 280px !important;
        max-width: 85vw !important;
        transform: translateX(-100%);
        transition: transform 0.25s ease-out;
        z-index: 1002 !important;
        box-shadow: 2px 0 12px rgba(0,0,0,0.15);
        padding-top: 3rem !important;
        padding-right: 0.5rem !important;
    }
    body.portal-sidebar-open .dashboard-sidebar.portal-sidebar {
        transform: translateX(0);
    }
    .portal-sidebar-close {
        display: flex;
    }
}
@media (min-width: 768px) {
    .portal-sidebar-overlay {
        display: none !important;
    }
}

/* online payment portal */
.mainCourseName{
    position: relative;
}
.courseRow{
    height: 60px;
    background-color: #ffffff;
    /* width: 90%; */
    height: 6vh;
    position: relative;
    /* left: 5%; */
    border-radius: 10px;
    display: flex;
    align-content: center;
    /* overflow: hidden; */
}
.feesTag{
    background-color: #E6ADBF;
    border-radius: 5px;
    color: rgb(0, 0, 0);
}

.circle {
    position: absolute;
    top: -7px;
    left: 36%;
    width: 40px;
    height: 40px;
    border-radius: 50%; 
    background-color: #E6ADBF; 
}
.circle h7{
    position: absolute;
    left: 16%;
    top: 22%;
    font-size: 13px;
}
.greaterThanIcon svg{
    position: absolute;
    top: -20px;
    left: 165px;
}
.greaterThanIcon2 svg{
    position: relative;
    top: -25px;
    right: -480px;
    color: black;
}
.circle2 {
    position: absolute;
    top: -29px;
    left: 185px;
    width: 35px;
    height: 35px;
    border-radius: 50%; 
    border: 3px solid #E6ADBF;
}
.circle2 h7{
    position: absolute;
    left: 26%;
    top: 6px;
    font-size: 13px;
}
.selectButton{
    padding: 10px;
    text-align:center;
    width: 120px;
    height: 40px;
    position: absolute;
    top: -20px;
    left: 340px;
    transform: translate(-50%, -50%);
    border-radius: 8px;    
}

.selectButton button{
    background-color: #371414;
    color: white;
    border-radius: 8px;
    width: 120px;
    height: 40px;
}

/* course-registration */
.mainDive{
    display: flex; 
    justify-content: center;
 }

 .mainDiveData{
    background-color: rgb(255, 255, 255); 
    height: 1000px; 
    border-radius:  0 0 10px 10px;
 }

 .mainDivTitle{
    background-color: #CEC5C5; 
    height: 80px;
    border-radius:10px 10px 0 0;
    position: relative;
 }

 .linkTexts a{
    position: absolute;
    top: 30%;
    left: 5%;
    text-decoration: none;
    color: #450399;
}

.greaterThanIcon2 svg{
    position: relative;
    left: 13%;
    top: 20px;
}


.greaterThanIcon svg{
    position: absolute;
    top: 9px;
    left: 0px;
}

.linkTexts2 a{
    position: absolute;
    top: 30%;
    left: 17%;
    text-decoration: none;
    color: #450399;
}

 .cardholderInput{
    position: relative;
    /* top: -29px; */
 }

 #more {display: none;}

 #myBtn{
 border-radius: 8px;
 border: none;
 background-color: white;
 }

pre{
    text-align: justify;
}

.CourseDescription p{
    color: black;
    text-align: justify;
}

.circle h7{
    position: absolute;
    left: 15%;
    top: 20%;
}

.greaterThanIcon{
    position: absolute;
    left: 41%;
    top: -3px;
}



.circle2 {
    position: absolute;
    top: -7px;
    left: 45%;
    width: 40px;
    height: 40px;
    border-radius: 50%; 
    border: 3px solid #E6ADBF;
    /* outline: 1px solid red; */
 }

.circle2 h7{
    position: absolute;
    left: 25%;
    top: 15%; 
    /* outline: 1px solid red; */
}

.buttonColor{
    background-color: #371414;
}

/* left navigation common */
.left_menu_container{
padding-top: 20%;
  background-color: #b1a692;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  height: 100%;
}

.left_menu_nav{
  margin-left: 5%;
}
.left_menu_nav li{
  color: #fff;
  font-weight: bolder;
  margin-bottom: 15%;
}
.left_menu_nav li:hover{
  background-color: #fff;
  color: #000;
}

/* Admin section: card headers use consistent background */
.admin-section .card-header {
    background-color: #e5e5e5 !important;
}

/* Reusable toolbar button height (align with 42px inputs; use with btn-export-style etc.) */
.btn-toolbar-height {
    height: 42px;
    line-height: 42px;
    box-sizing: border-box;
}
.btn-toolbar-height.d-inline-flex {
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

/* Reusable toolbar input/select (rounded corners, 42px height – use with form-control next to Search/Clear buttons) */
.form-control-toolbar {
    height: 42px;
    border-radius: 6px;
    box-sizing: border-box;
}

/* Reusable export-style button (height, padding, gray outline; use on Search/Clear/Export etc.) */
.btn-export-style {
    padding: 0 1rem;
    box-sizing: border-box;
    border-color: #6c757d !important;
    color: #6c757d;
    background-color: white !important;
}
.btn-export-style:hover {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    text-decoration: none !important;
}

/* Result table action buttons (Edit / Delete – reusable on courses, profiles, etc.) */
.btn-result-table-edit {
    background-color: #fff !important;
    color: #6c757d;
    border: 1px solid #6c757d;
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
    line-height: 1.25;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}
.btn-result-table-edit:hover {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #fff !important;
    transform: translateY(-1px);
}
.btn-result-table-delete {
    background-color: #fff !important;
    color: #dc3545;
    border: 1px solid #dc3545;
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
    line-height: 1.25;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}
.btn-result-table-delete:hover {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Admin page title (e.g. Admin Dashboard h2) */
.admin-page-title {
    font-size: 28px !important;
    color: #6c757d !important;
    margin-bottom: 30px;
    font-weight: 600;
}

/* common */
.navi_link_disabled {
    pointer-events: none;
}
.btn-primary{
    background-color: #ffffff !important;
    border-color: #6c757d !important;
    color: #000000 !important;
}
.btn-info{
    background-color: #ffffff !important;
    border-color: #6c757d !important;
    color: #000000 !important;
}
.fw-bold{
 font-weight: 300;
}
.container-main{
  background-color: #d4d4d7;
}
.container-sub{
    background-color: #eaeaea;

}
.main-navi-container{
    padding-top: 20px;
    padding-bottom: 20px;
}
.main-navi-link{
    color: #030303;
    background-color: #fff;
    border-color: #ccc;
}
.main-navi-link-active{
    color: #030303;
    background-color: #ff8585;
    border-color: #ccc;
}
.main-hedder-container{
    background-color: #eaeaea;
}
.container-inner{
    padding-left: 10%;
    padding-right: 10%;
}
/* main hedder container */
.bg-white{
    background-color: #eaeaea !important;
}
/* aas */
.aas-form-container{
    background-color: #fff;
    padding-top: 5%;

}
/* aas review */
.aas-review-sub-cont{
    margin-bottom: 15px;
}
.aas-review-data-row{
    border-bottom: 1px solid #ccc;
    width: 95%;
}
/* rounded border table */
.table-rounded-corner {
    border-collapse: separate;
    border-spacing: 0;
  }
  
 .table-rounded-corner td {
    background-color: #fff;
    border-style: none solid solid none;
    padding: 10px;
  }
  
 .table-rounded-corner  td:first-child { border-top-left-radius: 10px;border-bottom-left-radius: 10px; }
 .table-rounded-corner  td:last-child { border-top-right-radius: 10px; border-bottom-right-radius: 10px;}
  
 /* .table-rounded-corner tr:last-child td:first-child { border-bottom-left-radius: 10px;border-top-left-radius: 10px;  }
 .table-rounded-corner tr:last-child td:last-child { border-bottom-right-radius: 10px; border-top-right-radius: 10px;} */
  
 .table-rounded-corner tr:first-child td { border-top-style: solid; }
 .table-rounded-corner tr td:first-child { border-left-style: solid; }

 /* user dash board */

 .abstract_data_row{
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
 }
 .abstract_data_row:hover{
    border-color: #52545e;
    box-shadow: 0 4px 12px rgba(82, 84, 94, 0.15);
    transform: translateY(-2px);
 }
 .abstract_data_sub_row{
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: background 0.2s;
 }
 .abstract_data_sub_row:last-child{
    border-bottom: none;
 }
 .abstract_data_sub_row:hover{
    background: #f9fafb;
    border-radius: 8px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
 }
 .abstract_data_sub_row .col-3{
    font-weight: 600;
    color: #52545e;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
 }
 .abstract_data_sub_row .col-9{
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
    word-wrap: break-word;
 }
 .abstract_data_sub_row .col-9 a{
    color: #450399;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
 }
 .abstract_data_sub_row .col-9 a:hover{
    color: #52545e;
    text-decoration: underline;
 }
.abstract_text_dashborad{
    color: #dc3545;
    font-weight: 600;
    font-style: italic;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.abstract_text_dashborad::before{
    content: "⚠";
    font-size: 1.1rem;
}

/* Responsive styles for abstract_data_row */
@media (max-width: 768px) {
    .abstract_data_row {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
        border-radius: 8px !important;
    }
    .abstract_data_sub_row {
        flex-direction: column !important;
        gap: 0.5rem !important;
        padding: 0.75rem 0 !important;
    }
    .abstract_data_sub_row .col-3 {
        min-width: auto !important;
        width: 100% !important;
        font-size: 0.8rem !important;
    }
    .abstract_data_sub_row .col-9 {
        width: 100% !important;
        font-size: 0.95rem !important;
    }
    .abstract_data_sub_row:hover {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
.dashboard_instruction h2{
    font-size: 1.5em !important;
}
.dashboard_instruction a{
    color:blue;
}
.dashboard_instruction{
    margin-bottom: 10px;
    text-align: center;
    line-height: 30px;
}
.home_navi_links{
  width: 100%;
  text-align: center;
  display: block;
  text-decoration-color: aqua;
  text-decoration: underline;
  color: #450399;
  background-color: #ccc;
  padding: 5px;
  border-radius: 5px;
  font-size: 1.5em;
}

.ccpDivisionButton {
display: block;
width: 100%;
text-align: center;
text-decoration: none;
color: #751515;
background-color: #ccc;
padding: 5px;
border-radius: 5px;
}

.nav-link {
display: block;
padding: .5rem 1rem;
color: #000000;
background-color: #ffffff;
padding: 5px;
border-radius: 5px;
border: 1px solid #ccc;
margin-bottom: 8px;
padding-left: 10px;

}

.navi_link_active{
    background-color:#e1d8d4;
    color: #801c1f;
    border-radius: 5px;
    border: 1px solid #9ebac7;
    box-shadow: 9px 5px 15px -3px rgba(0,0,0,0.1);

 }


.ccpButtonClass {
    font-size: 14px;
    width: 180px;
    height: 100px;
    border-width: 0;
    color: #ffffff;
    font-weight: 100;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    display: inline-block;
    vertical-align: middle;
    padding-top: 20px;
    transition: all 0.3s ease;
}


.ccpButtonClass:hover {
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

  .fa{ color:#c31313 }
  .btn-link:hover {
    color: #450399;
    text-decoration: none; 
}

a:hover {
    color: #450399;
    text-decoration: none;
}
.accordion .collapse.show {
    overflow: visible !important;
    display: block !important;
}
a {
    color: #450399;
    text-decoration: inherit;
    font-weight: bold;
}

/* Dashboard Navigation Links */
.dashboard-nav-link {
    background: #fff;
    color: #000;
    border: 1px solid #c31313;
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 20px;
    text-align: left;
    text-decoration: none;
}

.dashboard-nav-link:hover {
    background: #f5f5f5;
    color: #000;
    border-color: #c31313;
    text-decoration: none;
}

.dashboard-nav-icon-home {
    font-size: 15px;
    padding-right: 10px;
}

.dashboard-nav-icon {
    font-size: 12px;
    padding-right: 12px;
}

/* membership */
/* .membership_model_heder{
  font-weight: bold !important;
} */

/* ============================================
   MODERN UI COLOR SYSTEM & REUSABLE CLASSES
   ============================================ */

/* Color Variables (for reference) */
:root {
    --primary-gradient-start: #52545e;
    --primary-gradient-end: #764ba2;
    --success-gradient-start: #10b981;
    --success-gradient-end: #059669;
    --danger-color: #dc3545;
    --warning-color: #f59e0b;
    --text-primary: #374151;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --background-light: #f8fafc;
    --background-card: #fff;
}

/* Primary Gradient Background */
.bg-gradient-primary {
    background: linear-gradient(135deg, #52545e 0%, #764ba2 100%);
}

/* Success Gradient Background */
.bg-gradient-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Modern Header */
.modern-header {
    background: linear-gradient(135deg, #52545e 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.modern-header h1 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.modern-header p {
    color: white;
    opacity: 0.9;
    font-size: 1rem;
    margin: 0;
}

/* Modern Card */
.modern-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Dashboard Quick Access service cards */
.dashboard-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-service-card {
    text-decoration: none;
    display: block;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.dashboard-service-card:hover {
    border-color: #52545e;
    box-shadow: 0 4px 12px rgba(82, 84, 94, 0.15);
    transform: translateY(-4px);
}

.dashboard-service-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.dashboard-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d8d8d9 0%, #ffffff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c8c8c8;

}

.dashboard-service-icon i {
    font-size: 2.5rem;
    color: white;
}

.dashboard-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #374151;
    margin: 0 0 0.5rem 0;
}

.dashboard-service-card p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Conference card icon (dashboard Active Conferences) */
.conference-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d8d8d9 0%, #ffffff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #c8c8c8;
    
}

.conference-card-icon i {
    font-size: 1.75rem;
    color: white;
}

/* Conference card Register Now link – consistent with abstract-form primary buttons */
.conference-card-register-btn {
    padding: 0.5rem 1.25rem;
    box-sizing: border-box;
    border: none;
    color: #fff !important;
    background: var(--accent-color, #7f191b) !important;
    background-color: var(--accent-color, #7f191b) !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.conference-card-register-btn:hover {
    background: #6b1416 !important;
    background-color: #6b1416 !important;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
}

.conference-card-register-btn .fa { color: #fff !important; }

/* Modern Button - Primary */
.btn-modern-primary {
    background: linear-gradient(135deg, #52545e 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(82, 84, 94, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(82, 84, 94, 0.4);
    color: white;
    text-decoration: none;
}

/* Modern Button - Success */
.btn-modern-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-modern-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

/* Modern Button - Secondary */
.btn-modern-secondary {
    background: #fff;
    color: #374151;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-modern-secondary:hover {
    border-color: #52545e;
    color: #52545e;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Modern Alert - Danger */
.alert-modern-danger {
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    color: #374151;
}

.alert-modern-danger i {
    margin-right: 8px;
    color: #dc3545;
}

/* Modern Alert - Warning */
.alert-modern-warning {
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    background: #fffbeb;
    color: #92400e;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.alert-modern-warning i {
    margin-right: 8px;
    color: #f59e0b;
}

/* Modern Alert - Success */
.alert-modern-success {
    border-radius: 8px;
    border-left: 4px solid #10b981;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    background: #d1fae5;
    color: #065f46;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.alert-modern-success i {
    margin-right: 8px;
    color: #10b981;
}

/* Modern Alert - Info */
.alert-modern-info {
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    background: #dbeafe;
    color: #1e40af;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.alert-modern-info i {
    margin-right: 8px;
    color: #3b82f6;
}

/* Modern Form Input */
.form-control-modern {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fff;
}

.form-control-modern:focus {
    border-color: #52545e;
    box-shadow: 0 0 0 3px rgba(82, 84, 94, 0.1);
    outline: none;
}

/* Modern Form Label */
.form-label-modern {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Modern Text Muted */
.text-muted-modern {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Modern Badge - Primary */
.badge-modern-primary {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Modern Badge - Success */
.badge-modern-success {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: #d1fae5;
    color: #065f46;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Modern Badge - Warning */
.badge-modern-warning {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: #fef3c7;
    color: #92400e;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Modern Upload Section */
.upload-section-modern {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 1.5rem;
    background: #f9fafb;
    transition: all 0.3s;
}

.upload-section-modern:hover {
    border-color: #52545e;
    background: #f3f4f6;
}

/* Modern Category Header */
.category-header-modern {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #52545e 0%, #764ba2 100%);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.category-header-modern h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Modern Course Card */
.course-card-modern {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.course-card-modern:hover {
    border-color: #52545e;
    box-shadow: 0 4px 12px rgba(82, 84, 94, 0.15);
    transform: translateY(-2px);
}

/* Modern Price Badge */
.price-badge-modern {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Online payment portal (course registration page) */
.course-portal-container {
    min-height: 100vh;
    background: #f8fafc;
    padding: 2rem 1rem;
}

.course-portal-container .container {
    max-width: 1000px;
    margin: 0 auto;
}

.course-portal-container .course-header {
    background: linear-gradient(135deg, rgb(216, 216, 217) 0%, rgb(255, 255, 255) 100%);
    border-radius: 16px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(200, 200, 200);
    border-image: initial;
    color: #000000!important;
    padding: 1rem;
}

.course-portal-container .course-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.course-portal-container .course-header h1 i {
    margin-right: 12px;
}

.course-portal-container .course-header p {
    opacity: 0.9;
    font-size: 1rem;
}

.course-portal-container .alert-modern {
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.course-portal-container .alert-modern i {
    margin-right: 8px;
}

.course-portal-container .courses-content {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.course-portal-container .category-section {
    margin-bottom: 2.5rem;
}

.course-portal-container .category-header {
    background: linear-gradient(135deg, rgb(216, 216, 217) 0%, rgb(255, 255, 255) 100%);
    border-radius: 16px;
    border: 1px solid rgb(200, 200, 200);
    color: #000000 !important;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.course-portal-container .category-header h2 {
    color: #000000 !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.course-portal-container .category-header h2 i {
    font-size: 1.25rem;
}

.course-portal-container .courses-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.course-portal-container .course-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.course-portal-container .course-card:hover {
    border-color: #52545e;
    box-shadow: 0 4px 12px rgba(82, 84, 94, 0.15);
    transform: translateY(-2px);
}

.course-portal-container .course-name {
    flex: 1;
    min-width: 250px;
}

.course-portal-container .course-name h3 {
    font-size: 1.25rem;
    font-weight: 200;
    color: #374151;
    margin: 0;
    line-height: 1.4;
}

.course-portal-container .course-name h3 i {
    color: #52545e;
    margin-right: 8px;
}

.course-portal-container .course-price {
    display: flex;
    align-items: center;
}

.course-portal-container .price-badge {
    background-color: #f5f5f5;
    color: rgb(8, 0, 27);
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 400;
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(147, 148, 147, 0.3);
    display: inline-flex;
    align-items: center;
}

.course-portal-container .price-badge i {
    margin-right: 6px;
}

.course-portal-container .btn-register {
    padding: 0 1rem;
    box-sizing: border-box;
    border-color: #6c757d !important;
    color: #ffffff;
    background-color: #6c757d;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(82, 84, 94, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 42px;

}

.course-portal-container .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(82, 84, 94, 0.4);
    color: white;
    text-decoration: none;
}

/* Course registration page */
.course-registration-container {
    min-height: 100vh;
    background: #f8fafc;
    padding: 2rem 1rem;
}

.course-registration-container .container {
    max-width: 900px;
    margin: 0 auto;
}

.course-registration-container .course-reg-header {
    background: linear-gradient(135deg, #d8d8d9 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #c8c8c8;
    }


.course-registration-container .course-reg-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #000000!important;
}

.course-registration-container .course-reg-header h1 i {
    margin-right: 12px;
}

.course-registration-container .course-reg-header p {
    opacity: 0.9;
    font-size: 1rem;
    color: #000000!important;
}

.course-registration-container .course-reg-header .course-reg-header-fee {
    color: #000000;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.9;
}

.course-registration-container .course-reg-back-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    color: #000000!important;
}

.course-registration-container .course-reg-back-link a {
    color: #000000!important;
    text-decoration: none;
    opacity: 0.9;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-registration-container .modern-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.course-registration-container .form-label-modern span,
.course-registration-container .required-asterisk {
    color: #dc3545;
}

.course-registration-container .form-control-modern:disabled {
    background: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

.course-registration-container .cardholder-section {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.course-registration-container .cardholder-section .form-label-modern {
    margin-bottom: 1rem;
}

.course-registration-container .cardholder-section .text-muted-modern {
    margin-bottom: 1rem;
}

.course-registration-container .cardholder-radio-group {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    padding-left: 0.25rem;
    flex-wrap: wrap;
}

.course-registration-container .form-check-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-registration-container .form-check-input.radiobtn {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #52545e;
}

.course-registration-container .form-check-label {
    cursor: pointer;
    color: #374151;
    font-weight: 500;
}

.course-registration-container .cardholder-input-hidden {
    display: none;
}

.course-registration-container .terms-section {
    padding: 1.5rem;
    background: #fff3cd;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
}

.course-registration-container .terms-section h5 {
    color: #92400e;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-registration-container .terms-section p {
    color: #92400e;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.course-registration-container .terms-check-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0;
}

.course-registration-container .terms-check-wrap .form-check-input {
    width: 24px;
    height: 24px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #52545e;
    flex-shrink: 0;
}

.course-registration-container .terms-check-wrap .form-check-label {
    margin: 0;
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
}

.course-registration-container .payment-info {
    background: linear-gradient(135deg, #d8d8d9 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #c8c8c8;
    color: #000000!important;
}

.course-registration-container .payment-info .payment-info-course-title {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
}

.course-registration-container .payment-info .payment-info-course-fee {
    color: #000000;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.course-registration-container .payment-info h4 {
    color: #000000!important;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.course-registration-container .payment-info p {
    color: #000000!important;
    opacity: 0.9;
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
}

.course-registration-container .submit-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.course-portal-container .empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: #6b7280;
}

.course-portal-container .empty-state i {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.course-portal-container .empty-state h3 {
    color: #374151;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.course-portal-container .empty-state p {
    font-size: 1rem;
}

/* Modern Submit Button */
.btn-submit-modern,
.course-registration-container .btn-submit-modern {
    background-color: #6c757d;
    color: white !important;
    border: none !important;
    padding: 1rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(82, 84, 94, 0.4);
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit-modern:hover,
.course-registration-container .btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(82, 84, 94, 0.5);
    color: white !important;
    background-color: #6c757d;
}

/* Modern Modal Header */
.modal-header-modern {
    background: linear-gradient(135deg, #52545e 0%, #764ba2 100%);
    border-radius: 12px 12px 0 0;
    padding: 1.5rem;
    border-bottom: none;
}

.modal-header-modern .modal-title {
    color: rgb(7, 7, 7);
    font-weight: normal;
    font-size: 1.25rem;
    margin: 0;
}

/* Modern Table */
.table-modern {
    margin: 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.table-modern thead {
    background: linear-gradient(135deg, #d0d0d1 0%, #d3d2d4 100%);
    color: rgb(7, 7, 7);
    font-weight: normal;
}

.table-modern thead th {
    padding: 1rem;
    font-weight: 600;
    border: none;
}

.table-modern tbody td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}

.table-modern tbody tr {
    transition: background 0.2s;
}

.table-modern tbody tr:hover {
    background: #f8f9fa;
}

/* Admin result tables: white tbody, unified row/cell styles (reusable for profile & submissions) */
.table-modern tbody,
.admin-result-table-tbody {
    background-color: #ffffff !important;
}
.table-modern th.table-th-actions {
    width: 1%;
}
.table-modern tbody td {
    padding: 0.875rem 1rem !important;
    border-bottom: 1px solid #f0f0f0 !important;
    font-size: 0.9rem;
    vertical-align: middle !important;
}
.table-modern tbody tr {
    transition: background-color 0.15s ease;
}
.table-modern tbody tr:hover {
    background-color: #f8f9fa !important;
}
.table-modern tbody td a {
    font-weight: 500;
    text-decoration: none;
}
.table-modern tbody td a:hover {
    text-decoration: underline;
}
/* Admin result table navigation (reusable: profile, abstracts, other result tables) */
.admin-result-table-pagination {
    min-height: 2.5rem;
}
.admin-result-table-pagination .pagination {
    margin: 0;
    flex-wrap: wrap;
}
.admin-result-table-pagination .pagination .page-link {
    padding: 0.4rem 0.75rem;
    font-size: 0.875rem;
    color: #333333;
    font-weight: normal;
    border-radius: 4px;
}
.admin-result-table-pagination .pagination .page-item {
    margin: 0 0.15rem;
}
.admin-result-table-pagination .pagination .page-item.active .page-link {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    font-weight: normal !important;
}
.admin-result-table-pagination .pagination .page-link:hover {
    color: var(--accent-color);
    background-color: #f8f9fa;
    border-color: #dee2e6;
}
.admin-result-table-nav-footer {
    background-color: #fff;
    border-top: 1px solid #e9ecef;
    padding: 0.5rem 0.75rem;
}
@media (min-width: 768px) {
    .admin-result-table-nav-footer {
        padding: 0.5rem 1rem;
    }
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .modern-header {
        padding: 1.5rem 1rem !important;
    }
    .modern-header h1 {
        font-size: 1.5rem !important;
    }
    .modern-card {
        padding: 1.5rem 1rem !important;
    }
    .course-registration-container .btn-submit-modern,
    .btn-submit-modern {
        width: 100% !important;
        min-width: auto !important;
    }
}

/* ============================================
   Abstract Submission Profile form (global so it loads with component layout)
   ============================================ */
.abstract-page {
    background: transparent;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.abstract-form-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e8eaed;
    padding: 2rem 2.25rem;
}
.abstract-form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8eaed;
}
.abstract-form-header-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}
.abstract-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #202124;
    letter-spacing: -0.02em;
    margin: 0 0 0.25rem 0;
}
.abstract-form-desc {
    font-size: 0.9375rem;
    color: #5f6368;
    margin: 0;
    line-height: 1.45;
}
.abstract-form-step {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #5f6368;
    background: #f1f3f4;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    white-space: nowrap;
}
.abstract-form-breadcrumb {
    font-size: 0.8125rem;
    color: #5f6368;
}
.abstract-form-breadcrumb a {
    color: var(--accent-color, #7f191b);
    text-decoration: none;
}
.abstract-form-breadcrumb a:hover {
    text-decoration: underline;
}
.abstract-form-breadcrumb-sep {
    margin: 0 0.35rem;
    color: #dadce0;
}
.abstract-form-breadcrumb-current {
    color: #202124;
    font-weight: 500;
}
.abstract-form-alerts { margin-bottom: 1.25rem; }
#response {
    margin-bottom: 1.25rem;
}
#response .abstract-form-alert {
    margin-bottom: 0.5rem;
}
#response .abstract-form-alert:last-child {
    margin-bottom: 0;
}
.abstract-form-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}
.abstract-form-alert-success {
    background: #e6f4ea;
    color: #1e8e3e;
    border: 1px solid #b7e1cd;
}
.abstract-form-alert-danger {
    background: #fce8e6;
    color: #c5221f;
    border: 1px solid #f5c6cb;
}
.abstract-form-alert-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.25rem;
    line-height: 1;
    color: inherit;
    opacity: 0.7;
    cursor: pointer;
}
.abstract-form-alert-close:hover { opacity: 1; }
.abstract-form-section {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}
.abstract-form-section-head,
.abstract-form-section-head--row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.abstract-form-section-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #202124;
    margin: 0;
    letter-spacing: 0.01em;
}
.abstract-form-section-title--standalone {
    margin-bottom: 1rem;
}
.abstract-form-required-hint { font-size: 0.8125rem; color: #5f6368; }
.abstract-form-asterisk { color: #c5221f; }
.abstract-form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.5rem;
}
.abstract-form-grid--two > .abstract-form-field { flex: 1 1 calc(50% - 0.75rem); }
@media (max-width: 767px) {
    .abstract-form-grid--two > .abstract-form-field { flex: 1 1 100%; }
}
.abstract-form-field { margin-bottom: 1.25rem; min-width: 0; }
.abstract-form-field--half { max-width: 280px; }
.abstract-form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 0.375rem;
}
.abstract-form-input,
.abstract-form-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #202124;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 6px;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.abstract-form-input::placeholder { color: #80868b; }
.abstract-form-input:hover,
.abstract-form-select:hover { border-color: #bdc1c6; }
.abstract-form-input:focus,
.abstract-form-select:focus {
    outline: none;
    border-color: var(--accent-color, #7f191b);
    box-shadow: 0 0 0 3px rgba(127, 25, 27, 0.12);
}
.abstract-form-select { cursor: pointer; appearance: auto; }
.abstract-form-input:disabled,
.abstract-form-input[disabled] {
    background: #f1f3f4;
    color: #5f6368;
    cursor: not-allowed;
}
.abstract-form-hint {
    display: block;
    font-size: 0.75rem;
    color: #80868b;
    margin-top: 0.25rem;
}
.abstract-form-hint--block { margin-top: 0.5rem; }
/* Read-only value (profile view) – same typography as inputs, no border */
.abstract-form-value {
    display: block;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #202124;
    margin: 0;
    min-height: 1.5rem;
}
.abstract-form-field-error {
    display: block;
    font-size: 0.75rem;
    color: #c5221f;
    margin-top: 0.25rem;
}
.abstract-form-btn-add {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #fff !important;
    background: #7f191b !important;
    background-color: #7f191b !important;
    border: none !important;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
}
.abstract-form-btn-add i,
.abstract-form-btn-add .fa {
    color: #fff !important;
}
.abstract-form-btn-add:hover {
    background: #6b1416 !important;
    background-color: #6b1416 !important;
    color: #fff !important;
}
.abstract-form-affiliations { min-height: 2.5rem; margin-top: 0.5rem; }
.abstract-form-affiliations .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    margin: 0.25rem 0.25rem 0 0;
    border-radius: 6px;
    background: #e8eaed;
    color: #202124;
}
.abstract-form-actions {
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}
.abstract-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff !important;
    background: #7f191b !important;
    background-color: #7f191b !important;
    border: none !important;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
}
.abstract-form-submit i,
.abstract-form-submit .fa {
    color: #fff !important;
}
.abstract-form-submit:hover {
    background: #6b1416 !important;
    background-color: #6b1416 !important;
    color: #fff !important;
}
.abstract-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.abstract-form-spinner { display: none; }
.abstract-form-spinner.active { display: block; }
.abstract-form-response { width: 100%; margin-top: 0.5rem; font-size: 0.875rem; }
.abstract-form-modal-dialog { max-width: 420px; }
.abstract-form-modal-content {
    border-radius: 10px;
    border: 1px solid #e8eaed;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.abstract-form-modal-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e8eaed;
}
.abstract-form-modal-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #202124;
    margin: 0;
}
.abstract-form-modal-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #5f6368;
    cursor: pointer;
}
.abstract-form-modal-close:hover { color: #202124; }
.abstract-form-modal-body { padding: 1.5rem; }
.abstract-form-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e8eaed;
    gap: 0.75rem;
}
.abstract-form-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.abstract-form-btn--primary {
    color: #fff !important;
    background: #7f191b !important;
    background-color: #7f191b !important;
    border: none !important;
}
.abstract-form-btn--primary i,
.abstract-form-btn--primary .fa {
    color: #fff !important;
}
.abstract-form-btn--primary:hover {
    background: #6b1416 !important;
    background-color: #6b1416 !important;
    color: #fff !important;
}
.abstract-form-btn--secondary {
    color: #5f6368;
    background: #f1f3f4;
    border: none;
}
.abstract-form-btn--secondary:hover {
  background: #e8eaed;
  color: #202124;
}
.abstract-form-btn--danger {
  color: #fff !important;
  background: #c5221f !important;
  background-color: #c5221f !important;
  border: none !important;
}
.abstract-form-btn--danger:hover {
  background: #a91c19 !important;
  background-color: #a91c19 !important;
  color: #fff !important;
}
/* Textarea and file input – match abstract-form-input */
.abstract-form-textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #202124;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 6px;
    min-height: 200px;
    resize: vertical;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
}
.abstract-form-textarea:focus {
    outline: none;
    border-color: var(--accent-color, #7f191b);
    box-shadow: 0 0 0 3px rgba(127, 25, 27, 0.12);
}
.abstract-form-file-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.9375rem;
    color: #202124;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 6px;
    cursor: pointer;
}

/* Abstract portal – author box, table, word count, upload */
.abstract-portal-author-box {
    border: 1px solid #e8eaed;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    background: #f8f9fa;
    margin-top: 0.5rem;
}
.abstract-portal-authors-block {
    border: 1px solid #e8eaed;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    background: #fff;
    margin-bottom: 1.5rem;
}
.abstract-portal-authors-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #202124;
    margin: 0 0 1rem 0;
}
.abstract-portal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}
.abstract-portal-table thead {
    background: var(--accent-color, #7f191b);
    color: #fff;
}
.abstract-portal-table th {
    padding: 0.625rem 0.75rem;
    font-weight: 600;
    text-align: left;
}
.abstract-portal-table td {
    padding: 0.625rem 0.75rem;
    border-top: 1px solid #e8eaed;
}
.abstract-portal-table tbody tr:hover { background: #f8f9fa; }
.abstract-portal-table .btn_remove {
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    border: none;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    background: #fce8e6;
    color: #c5221f;
}
.abstract-portal-word-count {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: #5f6368;
}
.abstract-portal-limit-exceed { color: #c5221f; font-weight: 600; }
.abstract-portal-upload {
    border: 1px dashed #dadce0;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    background: #f8f9fa;
    margin-bottom: 1.5rem;
}
.abstract-portal-upload-status--required { color: #c5221f; font-weight: 500; font-size: 0.8125rem; }
.abstract-portal-file-response { margin-top: 0.5rem; font-size: 0.875rem; }

/* Upload success message – same for abstract doc and ethics letter */
.abstract-portal-upload-success {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border-left: 4px solid #10b981;
    background: #d1fae5;
    color: #065f46;
    font-size: 0.9375rem;
}
.abstract-portal-upload-success strong { margin-right: 0.25rem; }
.abstract-portal-remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    border: none;
    background: #c5221f !important;
    color: #fff !important;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.abstract-portal-remove-btn:hover {
    background: #a91c19 !important;
    color: #fff !important;
}

/* Abstract review page – consistent with abstract form */
.abstract-review-grid {
    display: grid;
    gap: 0.35rem;
    font-size: 0.9375rem;
    color: #202124;
}
.abstract-review-abstract-block {
    background: #f8f9fa;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.6;
    font-size: 0.9375rem;
    color: #202124;
    border: 1px solid #e8eaed;
}
.abstract-review-badge {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    background: #e8eaed;
    color: #202124;
}
.abstract-review-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    margin-bottom: 1rem;
    color: #202124;
    font-size: 0.9375rem;
    line-height: 1.5;
}
.abstract-review-checkbox:last-of-type { margin-bottom: 0; }
.abstract-review-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    cursor: pointer;
    min-width: 1.25rem;
}
.abstract-review-checkbox span { flex: 1; }

/* Review page: mobile author cards (hide table, show cards) */
.abstract-review-authors-cards { display: none; }
@media (max-width: 767px) {
    .abstract-review-page .abstract-portal-table { display: none; }
    .abstract-review-authors-cards { display: block; }
}
.abstract-review-author-card {
    background: #f8f9fa;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}
.abstract-review-author-num {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    background: var(--accent-color, #7f191b);
    color: #fff;
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}
.abstract-review-author-card div { padding: 0.2rem 0; }
.abstract-review-author-card strong { color: #5f6368; margin-right: 0.35rem; }

/* Course registration form (post-Register click) – consistent with abstract-form */
.abstract-form-title .fa { margin-right: 0.5rem; }
.abstract-form-desc--fee { font-weight: 600; color: #202124; }
.abstract-form-desc--muted { color: #5f6368; margin-bottom: 0.75rem; }
.abstract-form-section--cardholder {
    background: #f8f9fa;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #e8eaed;
}
.abstract-form-radio-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.abstract-form-radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9375rem;
    color: #202124;
}
.abstract-form-radio-item .radiobtn {
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
    accent-color: var(--accent-color, #7f191b);
}
.cardholder-input-hidden { display: none; }
.abstract-form-terms-box {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    border: 1px solid #fde68a;
    border-left-width: 4px;
}
.abstract-form-terms-box .abstract-form-section-title { color: #92400e; }
.abstract-form-terms-box .abstract-form-section-title .fa { color: #b45309; }
.abstract-form-terms-text { color: #92400e; margin-bottom: 1rem; line-height: 1.6; }
.abstract-form-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9375rem;
    color: #202124;
    line-height: 1.5;
}
.abstract-form-checkbox-item .abstract-form-checkbox-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--accent-color, #7f191b);
}
.abstract-form-section--payment {
    background: #f8f9fa;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #e8eaed;
}

/* Course Registration portal – consistent with abstract-form */
.course-portal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.course-portal-card {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.course-portal-card:hover {
    border-color: #dadce0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.course-portal-card-body { padding: 1.25rem 1.5rem; }
.course-portal-card-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #202124;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}
.course-portal-card-title i {
    color: #5f6368;
    font-size: 0.9375rem;
}
.course-portal-prices {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.course-portal-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e8eaed;
}
.course-portal-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 0;
}
.course-portal-price-badge i { color: #5f6368; font-size: 0.875rem; }
.course-portal-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}
.course-portal-btn:hover { text-decoration: none; color: #fff !important; }
.course-portal-empty {
    text-align: center;
    padding: 2.5rem 1.5rem;
}
.course-portal-empty i {
    font-size: 2.5rem;
    color: #dadce0;
    margin-bottom: 1rem;
    display: block;
}
.course-portal-empty .abstract-form-section-title { margin-bottom: 0.5rem; }
.abstract-form-section-title .fa {
    margin-right: 0.35rem;
    color: #5f6368;
    font-size: 0.875rem;
}

@media (max-width: 767px) {
    .abstract-form-card { padding: 1.5rem 1.25rem; }
    .abstract-form-title { font-size: 1.25rem; }
    .abstract-form-input, .abstract-form-select { font-size: 16px; }
    .course-portal-price-row {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .course-portal-btn { justify-content: center; width: 100%; }
    .course-portal-card-body { padding: 1rem 1.25rem; }
}

/* Membership applications list – consistent with abstract-form (same accent) */
.member-reg-list--consistent.member-reg-list { margin-top: 0; }
.member-reg-list--consistent .member-reg-link {
    border-color: #e8eaed;
    color: #202124;
    font-size: 0.9375rem;
}
.member-reg-list--consistent .member-reg-link::before {
    color: var(--accent-color, #7f191b);
}
.member-reg-list--consistent .member-reg-link:hover {
    border-color: var(--accent-color, #7f191b);
    color: var(--accent-color, #7f191b);
    text-decoration: none;
}

/* Member registration forms – consistent with abstract-form */
.member-info-box-consistent {
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border: 1px solid #e8eaed;
    border-left: 4px solid var(--accent-color, #7f191b);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.member-info-box-consistent a {
    color: var(--accent-color, #7f191b);
    font-weight: 500;
}
.member-info-box-consistent a:hover { text-decoration: underline; }
.member-upload-box--consistent {
    padding: 1rem 1.25rem;
    background: #fafbfc;
    border: 1px dashed #e8eaed;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.member-upload-box--consistent .input-group .form-control { border-radius: 6px 0 0 6px; }
.member-upload-box--consistent .abstract-portal-remove-btn { border-radius: 0 6px 6px 0; }

/* Conference registration – consistent with abstract-form */
.abstract-form-section--amount {
    background: #f8f9fa;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    padding: 1rem 1.25rem;
}
.conference-reg-currency { font-size: 1.125rem; font-weight: 600; color: #202124; margin-right: 0.35rem; }
.conference-reg-price { font-size: 1.5rem; font-weight: 700; color: var(--accent-color, #7f191b); }
.conference-affiliation-list {
    padding: 1rem;
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    min-height: 50px;
}
.conference-affiliation-item {
    padding: 0.5rem 0;
    color: #202124;
    border-bottom: 1px solid #e8eaed;
    font-size: 0.9375rem;
}
.conference-affiliation-item:last-child { border-bottom: none; }
.conference-affiliation-item .fa { color: #5f6368; margin-right: 0.5rem; }
.conference-ab-prefix {
    background: #f1f3f4;
    border: 1px solid #dadce0;
    border-right: none;
    border-radius: 6px 0 0 6px;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    color: #5f6368;
    font-size: 0.9375rem;
}
.conference-ab-prefix + .abstract-form-input { border-radius: 0; }
.conference-ab-prefix + .abstract-form-input + .input-group-text {
    border-radius: 0 6px 6px 0;
    border: 1px solid #dadce0;
    border-left: none;
    background: #fff;
}
.input-group .abstract-form-input { flex: 1; min-width: 0; }

/* My History (abstracts / courses / conference) – shared tabs and table */
.history-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.history-tab {
    padding: 0.75rem 1.25rem;
    color: #6b7280;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.history-tab:hover {
    color: var(--accent-color, #7f191b);
    border-bottom-color: var(--accent-color, #7f191b);
}
.history-tab--active {
    color: var(--accent-color, #7f191b);
    border-bottom-color: var(--accent-color, #7f191b);
}
.history-tab .fa { color: inherit; }
.history-table-link {
    color: var(--accent-color, #7f191b) !important;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.history-table-link:hover { color: var(--accent-color-hover, #6b1416) !important; }
.history-empty-cell {
    padding: 2rem 1rem !important;
    text-align: center;
    color: #6b7280;
}
.history-empty-cell .fa { font-size: 2.5rem; color: #cbd5e1; margin-bottom: 0.75rem; display: block; }
@media (max-width: 767px) {
    .history-tabs { flex-direction: column; border-bottom: none; }
    .history-tab { border-bottom: none; border-left: 3px solid transparent; border-radius: 6px; margin-bottom: 0.5rem; }
    .history-tab--active { border-left-color: var(--accent-color, #7f191b); background: #fef2f2; }
}
