.vp-header {
    height: 70px;
    position: fixed;
    z-index: 1000;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E7EBF2;
    box-shadow: none;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
}
.vp-header-inner {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0;
}

.vp-logo {
    width: 190px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.vp-logo img {
    width: 155px;
    height: auto;
    display: block;
}

.vp-header-nav {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: flex-end;
}

.vp-header-link {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.vp-header-link .material-symbols-outlined {
    color: #334E85;
    font-size: 19px;
    transition: all 0.2s ease;
}


/* Hover */

.vp-header-link:hover {
    color: #0851e7;
}

.vp-header-link:hover .material-symbols-outlined {
    color: #0851e7;
}

.vp-header-link.active {
    color: #0851e7;
    font-weight: 500;
}

.vp-header-link.active .material-symbols-outlined {
    color: #0851e7;
}

.vp-header-link.active::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 0px;
    bottom: 0;
    height: 2.5px;
    border-radius: 3px 3px 0 0;
    background-color: #0851e7;
}

.vp-header-actions {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.vp-notification-btn {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: #334155;
    cursor: pointer;
}

.vp-notification-btn:hover {
    background-color: #F1F5FF;
    color: #0851e7;
}

.vp-notification-btn .material-symbols-outlined {
    font-size: 23px;
}

.vp-notification-dot {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 7px;
    height: 7px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    background-color: #EF4444;
}

.vp-profile {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 5px 4px 4px;
    border: 0;
    background-color: #FFFFFF;
    color: #172554;
}

.vp-profile::after {
    margin-left: 2px;
    color: #64748B;
}

.vp-avatar {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #2167B1;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
}

.vp-user-name {
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #172554;
    font-size: 13px;
    font-weight: 600;
}

.vp-profile-menu {
    min-width: 190px;
    margin-top: 10px !important;
    padding: 8px;
    border: 1px solid #E5EAF1;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px #DDE4EE;
}

.vp-profile-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 11px;
    border-radius: 7px;
    color: #334155;
    font-size: 14px;
}

.loginnav a {
    cursor: pointer;
}

.loginnav {
    display: flex;
}

.vp-profile-menu .dropdown-item:hover {
    background-color: #F1F5FF;
    color: #0851e7;
}

.vp-profile-menu .material-symbols-outlined {
    font-size: 19px;
}

.vp-profile-menu .dropdown-divider {
    border-color: #E7EBF2;
}

.vp-profile-menu .vp-logout {
    color: #DC2626;
}

.vp-profile-menu .vp-logout:hover {
    background-color: #FEF2F2;
    color: #DC2626;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .vp-logo {
        width: 165px;
    }

    .vp-header-link {
        padding: 0 9px;
        font-size: 12px;
    }

    .vp-header-link.active::after {
        left: 9px;
        right: 9px;
    }

    .vp-header-actions {
        gap: 10px;
    }
}


@media (max-width: 991px) {

    .vp-header {
        height: auto;
    }

    .vp-header-inner {
        min-height: 72px;
        height: auto;
        flex-wrap: wrap;
        padding: 10px 16px;
    }

    .vp-logo {
        width: 170px;
    }

    .vp-header-nav {
        order: 3;
        width: 100%;
        height: 48px;
        overflow-x: auto;
        flex: none;
        border-top: 1px solid #EEF1F5;
    }

    .vp-header-link {
        height: 48px;
    }

    .vp-header-actions {
        margin-left: auto;
    }
}


@media (max-width: 576px) {

    .vp-header-inner {
        padding: 8px 12px;
    }

    .vp-logo {
        width: 135px;
    }

    .vp-logo img {
        width: 125px;
    }

    .vp-user-name {
        display: none;
    }

    .vp-header-actions {
        gap: 5px;
    }

    .vp-header-link {
        padding: 0 12px;
        font-size: 12px;
    }
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
    text-wrap: auto;
}

.transcripts-page {
    width: 100%;
    padding: 18px;
    background-color: #f8fafc;
    color: #172033;
}


.transcripts-page__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.transcripts-page__title {
    margin: 0;
    color: #172033;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.25;
}

.transcripts-page__subtitle {
    margin: 7px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.transcripts-page__upload-btn {
    min-height: 42px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    color: #ffffff;
    background-color: #175cd3;
    border: 1px solid #175cd3;
    border-radius: 6px;

    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.transcripts-page__upload-btn:hover {
    color: #ffffff;
    background-color: #1249aa;
    border-color: #1249aa;
    box-shadow: 0 4px 12px #175cd326;
}

.transcripts-page__upload-btn:focus {
    color: #ffffff;
}

.transcripts-page__upload-btn .material-symbols-outlined {
    font-size: 18px;
}

.transcripts-page__upload-btn--hidden {
    display: none;
}

.transcripts-page__file {
    max-width: 100%;
    overflow: hidden;
}

.transcripts-page__table th,
.transcripts-page__table td {
    box-sizing: border-box;
    min-width: 0;
}

.transcripts-page__file-details {
    min-width: 0;
    overflow: hidden;
}

.transcripts-page__file-meta {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.transcripts-page__status {
    max-width: 100%;
    overflow: hidden;
}

.transcripts-page__status>div {
    min-width: 0;
    overflow: hidden;
}

.transcripts-page__status strong,
.transcripts-page__status small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.transcripts-page__action-group {
    max-width: 100%;
    white-space: nowrap;
}

/* Keep long values contained when the table switches to stacked rows. */
.transcripts-page__table td,
.transcripts-page__table th {
    overflow: hidden;
}

.transcripts-page__toolbar {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border: 1px solid #e8edf4;
    border-radius: 10px 10px 0 0px;
    box-shadow: 0 2px 8px #17203308;
    overflow: hidden;
}

.transcripts-page__tabs {
    height: 55px;
    display: flex;
    align-items: stretch;
    margin: 0;
    padding-left: 16px;
    border: 0;
}

.btn-download:focus,
.btn-download {
    background: #fff;
    border: 1px solid #0851e7;
    color: #107ee3;
    padding: 6px 15px;
    border-radius: 6px;
}
.btn-download:hover {
    background: #0851e7;
    border: 1px solid #0851e7;
    color: #fff;
}

.transcripts-page__tabs .nav-item {
    display: flex;
}

.transcripts-page__tabs .nav-link {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    color: #344054;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.transcripts-page__tabs .nav-link:hover {
    color: #175cd3;
}

.transcripts-page__tabs .nav-link.active {
    color: #175cd3;
    background-color: transparent;
}

.transcripts-page__tabs .nav-link.active::after {
    content: "";

    position: absolute;
    right: 10px;
    bottom: 0;
    left: 10px;

    height: 3px;

    background-color: #175cd3;
    border-radius: 3px 3px 0 0;
}

.transcripts-page__tab-icon {
    font-size: 18px;
}


.transcripts-page__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
}

.transcripts-page__ai-upload-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 6px 0 16px;
    padding: 12px 14px 12px 12px;
    background: linear-gradient(90deg, #f4f8ff 0%, #ffffff 72%);
    border: 1px solid #e4edf8;
    border-radius: 10px;
}

.transcripts-page__ai-upload-row-pad {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.transcripts-page__ai-upload-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.transcripts-page__ai-upload-hint-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0851e7;
    background: #ffffff;
    border: 1px solid #d7e4ff;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(8, 81, 231, 0.08);
}

.transcripts-page__ai-upload-hint-icon .material-symbols-outlined {
    font-size: 18px;
}

.transcripts-page__ai-upload-hint-text {
    color: #172033;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.35;
}

.transcripts-page__ai-upload-btn {
    flex-shrink: 0;
}

.transcripts-page__search {
    position: relative;
    width: 280px;
}

.transcripts-page__search .form-control {
    height: 40px;
    padding: 0 14px 0 38px;

    color: #172033;
    background-color: #ffffff;

    border: 1px solid #dfe5ed;
    border-radius: 7px;

    font-size: 13px;

    box-shadow: none;
}

.transcripts-page__search .form-control::placeholder {
    color: #98a2b3;
}

.transcripts-page__search .form-control:focus {
    border-color: #175cd3;
    box-shadow: 0 0 0 3px #175cd31a;
}

.transcripts-page__search-icon {
    position: absolute;
    z-index: 2;

    top: 50%;
    left: 13px;

    color: #475467;
    font-size: 15px;

    transform: translateY(-50%);
}

.transcripts-page__table-card .table>thead>tr>th,
.transcripts-page__table-card .profile-modern-page__table>thead>tr>th {
    vertical-align: middle;
    border-bottom: 1px solid #edf1f5;
}

.transcripts-page__filter-btn :focus,
.transcripts-page__filter-btn {
    height: 40px;
    min-width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #344054 !important;
    background-color: #ffffff;
    border: 1px solid #dfe5ed;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 500;
}

.transcripts-page__filter-btn:hover {
    color: #175cd3;
    background-color: #f8fbff;
    border-color: #175cd3;
}


.transcripts-page__tab-content {
    margin-top: 0;
}

.transcripts-page__table-card {
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e8edf4;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 8px #17203308;
    padding: 15px;
    padding-top: 10px;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px; */
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

.transcripts-page__table {
    width: 100%;
    margin: 0;
    table-layout: fixed;
}

.transcripts-page__table .w-15 {
    width: 15%;
}

.transcripts-page__table .w-20 {
    width: 20%;
}
#ccc-icon{display: none;}
.transcripts-page__table .w-25 {
    width: 25%;
}

.transcripts-page__table .w-40 {
    width: 40%;
}
.shared-access-banner {
  width: 100%;
     max-width: 100%;
    margin-bottom: 15px !important;
  padding: 14px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  background: #f0f7ff;
  border: 1px solid #cfe3ff;
  border-radius: 12px;
margin-top: 0;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.06);
}
#ccc #ccc-notify[visible]{display: none;}
.shared-access-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shared-access-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1769e0;
    background: #ffffff;
    border: 1px solid #d7e7ff;
    border-radius: 50%;
    padding: 10px;
    vertical-align: middle;
    align-items: normal;
}

.shared-access-text h6 {
  margin: 0 0 3px;
  color: #172b4d;
  font-size: 14px;
  font-weight: 500;
}

.shared-access-text p {
    margin: 0;
    color: #60708a;
    font-size: 13px;
    font-weight: bolder;
    font-style: italic;
}

.shared-access-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 16px;

  border: 0;
  border-radius: 8px;

  background: #1769e0;
  color: #ffffff;

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;
  transition: all 0.2s ease;
}

.shared-access-btn:hover {
  background: #0f56bd;
  transform: translateY(-1px);
}
.transcripts-page__table thead th {
    height: auto;
    padding: 15px 0 !important;
    color: #344054;
    background-color: #f4f7fb;
    border-bottom: 1px solid #dfe5ed;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
    vertical-align: middle;
    white-space: nowrap;
}

.transcripts-page__table thead th i {
    margin-left: 6px;
    color: #98a2b3;
    font-size: 10px;
}

.transcripts-page__table tbody td {
    height: auto;
    padding: 0;

    border-bottom: 1px solid #edf1f5;
    vertical-align: middle;
}

.transcripts-page__table tbody tr:last-child td {
    border-bottom: 0;
}

.transcripts-page__table tbody tr {
    transition: background-color 0.15s ease;
}

.transcripts-page__table tbody tr:hover {
    background-color: #fafcff;
}

.transcripts-page__table-card>.table-responsive.table-scroll,
.transcripts-page__table-card>div>.table-responsive.table-scroll {
    overflow-x: hidden;
}

.transcripts-page__table-card .table-responsive.table-scroll thead,
.transcripts-page__table-card .table-responsive.table-scroll tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.transcripts-page__table-card .table-responsive.table-scroll thead {
    position: sticky;
    z-index: 2;
    top: 0;
}

.transcripts-page__table-card .table-responsive.table-scroll tbody {
    display: block;
    max-height: calc(100vh - 32vh);
    overflow-y: auto;
    overflow-x: hidden;
}

.transcripts-page__table-card .table-responsive.table-scroll tbody tr {
    min-height: auto;
}

.transcripts-page__table th:last-child,
.transcripts-page__table td:last-child {
    text-align: right;
}


.transcripts-page__file {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 220px;
}

.transcripts-page__file-icon {
    width: 38px;
    height: 42px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;

    font-size: 19px;
}

.transcripts-page__file-icon--purple {
    color: #7c3aed;
    background-color: #ede9fe;
}

.transcripts-page__file-icon--green {
    color: #10b981;
    background-color: #d1fae5;
}

.transcripts-page__file-icon--blue {
    color: #2563eb;
    background-color: #dbeafe;
}

.transcripts-page__file-icon--orange {
    color: #f59e0b;
    background-color: #fef3c7;
}

.transcripts-page__file-icon--pink {
    color: #ec4899;
    background-color: #fce7f3;
}
.icondv .material-symbols-outlined {
    font-size: 35px!important;
}
.ordermatrices .detailsdiv {
    justify-content: space-between;
}
.gap-20{
    gap: 20px;
}

.backbtn{
    padding: 10px;
    font-size: x-large;
    color: #107ee3;
    cursor: pointer;
}
.transcripts-page__file-icon .material-symbols-outlined{
        font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
}
.detailsdiv {
    padding: 15px;
    width: 85%;
    justify-content: space-between;
    align-items: center;
}
.ordermatrices .icondv {
    width: 15%;
    padding: 0;
    font-size: 35px;
    border-radius: 8px 8px 0;
}
#order-details .ordermatrices .integervalue {
    font-size: 18px;
}
.ordermat li{
        border-radius: 8px;
}
.ordermatrices .f14{
        color: #53657D;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
}
.transcripts-page__file-name {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
color: #2e333c;
    font-size: 13px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transcripts-page__file-meta {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-top: 5px;

    color: #667085;
    font-size: 11px;
}

.transcripts-page__date {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #2e333c;
    font-size: 13px;
    font-weight: 400;

}

.transcripts-page__date>i {
    margin-top: 0;
    color: #667085;
}

.transcripts-page__date span {
    display: block;
}

.transcripts-page__date small {
    display: block;
    margin-top: 3px;

    color: #667085;
    font-size: 11px;
}

.transcripts-page__status {
    min-width: auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 5px 10px;
    border-radius: 5px;
}

.transcripts-page__status>i {
    font-size: 16px;
}

.transcripts-page__status strong {
    display: block;

    font-size: 10px;
    font-weight: 500;
    line-height: 1.3;
}

.transcripts-page__status small {
    display: block;

    margin-top: 2px;

    font-size: 11px;
    line-height: 1.3;
}

.transcripts-page__status--uploading {
    color: #175cd3;
    padding: 5px 10px;
    border-radius: 5px;font-weight: 500;
    background-color: #eff8ff;
}

.transcripts-page__status--uploading small {
    color: inherit;
}

.transcripts-page__status--notstarted {
    color: #eb1414;
    background-color: #fadfd7;
    padding: 5px 10px;font-weight: 500;
    border-radius: 5px;
}

.transcripts-page__status--notstarted small {
    color: inherit;
}
.flexcolumn{
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.transcripts-page__status--processing {
    color: #765ab3;
    background-color: #e3d4ff;
    padding: 5px 10px;font-weight: 500;
    border-radius: 5px;
}

.transcripts-page__status--processing small {
    color: inherit;
}

.transcripts-page__status--completed {
    color: #1b9126;
    background-color: #d7faeb;
    padding: 5px 10px;font-weight: 500;
    border-radius: 5px;
}

.transcripts-page__status--completed small {
    color: inherit;
}

.transcripts-page__status--failed {
    color: #eb1414;
    background-color: #fadfd7;
    padding: 5px 10px;
    border-radius: 5px;font-weight: 500;
}

.transcripts-page__status--hold {
    color: #eb7514;
    background-color: #fae1d7;
    padding: 5px 10px;font-weight: 500;
    border-radius: 5px;
}


.transcripts-page__status--deliver {
    color: #3d12c3;
    background-color: #d7dcfa;
    padding: 5px 10px;font-weight: 500;
    border-radius: 5px;
}

.transcripts-page__status--failed small {
    color: inherit;
}

.transcripts-page__duration {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #667085;
    font-size: 12px;
    white-space: nowrap;
}

.transcripts-page__duration i {
    color: #667085;
    font-size: 15px;
}

.transcripts-page__action-group {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
}

.transcripts-page__action-btn,
.transcripts-page__retry-btn {
    width: 32px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #475467;
    background-color: transparent;

    border: 1px solid transparent;
    border-radius: 6px;

    font-size: 16px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.transcripts-page__action-btn:hover {
    color: #175cd3;
    background-color: #f2f7ff;
    border-color: #d9e7ff;
}

.transcripts-page__retry-btn {
    color: #344054;
}

.transcripts-page__retry-btn:hover {
    color: #175cd3;
    background-color: #f2f7ff;
}


.transcripts-page__footer {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    padding: 14px 20px;

    border-top: 1px solid #edf1f5;
}

.transcripts-page__count {
    color: #667085;
    font-size: 12px;
    white-space: nowrap;
}

.transcripts-page__count strong {
    color: #344054;
    font-weight: 600;
}



.transcripts-page__pagination {
    display: flex;
    align-items: center;
    gap: 5px;
}

.transcripts-page__page-btn {
    min-width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 8px;

    color: #344054;
    background-color: #ffffff;

    border: 1px solid #dfe5ed;
    border-radius: 6px;

    font-size: 12px;
    font-weight: 500;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.transcripts-page__page-btn:hover {
    color: #175cd3;
    border-color: #b9d0f8;
    background-color: #f5f9ff;
}

.transcripts-page__page-btn.active {
    color: #ffffff;
    background-color: #175cd3;
    border-color: #175cd3;
}

.transcripts-page__dots {
    padding: 0 3px;

    color: #667085;
    font-size: 13px;
}

.transcripts-page__page-size {
    width: 100px;
    height: 34px;

    color: #344054;
    border-color: #dfe5ed;
    border-radius: 6px;

    font-size: 12px;
    box-shadow: none;
}

.transcripts-page__page-size:focus {
    border-color: #175cd3;
    box-shadow: 0 0 0 3px #175cd31a;
}

.transcripts-page__empty-state {
    min-height: 360px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background-color: #ffffff;
    border: none;
    border-radius: 10px;

    text-align: center;
}

.transcripts-page__empty-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    color: #175cd3;
    background-color: #eff6ff;

    border-radius: 50%;

    font-size: 27px;
}

.transcripts-page__empty-state h3 {
    margin: 0;

    color: #172033;
    font-size: 18px;
    font-weight: 500;
}

.transcripts-page__empty-state p {
    margin: 8px 0 0;

    color: #667085;
    font-size: 13px;
}

.transcripts-page__empty-state--no-record {
    min-height: 250px;
    padding: 40px 24px;
    border: 0;
    border-radius: 0;
}

/* Consistent padding for no-content / empty record blocks */
.no-record-found.w-100 .transcriptdivno,
.no-record-found.w-100 .transcripts-page__empty-state--no-record,
.profile-modern-page__table-wrap .transcriptdivno,
.transcripts-page__table-card .transcripts-page__empty-state--no-record,
.table-responsive .transcripts-page__empty-state--no-record {
    padding: 40px 24px;
    box-sizing: border-box;
}

.card-loading-state {
    padding: 0 0 8px;
}

.card-loading-state .transcripts-page__empty-state {
    padding: 40px 24px;
}

.modal-skeleton {
    padding: 12px 24px 28px;
    position: relative;
}

.modal-skeleton__top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 4px;
}

.modal-skeleton__close {
    border: 0;
    background: transparent;
    padding: 4px;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
}

.modal-skeleton__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e8edf3;
}

.modal-skeleton__header-copy {
    flex: 1;
    min-width: 0;
}

.modal-skeleton__header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-skeleton__body {
    display: grid;
    gap: 14px;
}

.modal-skeleton__card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    background: #fff;
}

.modal-skeleton__card-copy {
    flex: 1;
    min-width: 0;
}

.modal-skeleton__icon,
.modal-skeleton__line,
.modal-skeleton__pill {
    background: linear-gradient(90deg, #eef2f6 25%, #f8fafc 50%, #eef2f6 75%);
    background-size: 200% 100%;
    animation: portal-kpi-skeleton-shimmer 1.4s ease-in-out infinite;
    border-radius: 8px;
}

.modal-skeleton__icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 10px;
}

.modal-skeleton__icon--sm {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
}

.modal-skeleton__line {
    display: block;
    height: 12px;
    margin-bottom: 8px;
}

.modal-skeleton__line:last-child {
    margin-bottom: 0;
}

.modal-skeleton__line--sm {
    width: 28%;
    height: 10px;
}

.modal-skeleton__line--label {
    width: 34%;
    height: 10px;
}

.modal-skeleton__line--md {
    width: 48%;
    height: 14px;
}

.modal-skeleton__line--lg {
    width: 72%;
    height: 16px;
}

.modal-skeleton__pill {
    width: 88px;
    height: 32px;
    border-radius: 8px;
}

.modal-skeleton__pill--short {
    width: 36px;
}

@media (max-width: 767px) {
    .modal-skeleton__header {
        flex-wrap: wrap;
    }

    .modal-skeleton__header-actions {
        width: 100%;
    }
}

.transcripts-page__empty-image {
    display: block;
    width: 96px;
    height: 96px;
    margin: 0 auto 14px;
    object-fit: contain;
}

.transcripts-page__empty-copy {
    max-width: 360px;
    color: #667085;
    text-align: center;
    display: inline-block;
}

.transcripts-page__empty-copy p {
    margin: 0;
    color: #626c82;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    padding-top: 0;
}

.loading-dots-text {
    font-size: 16px !important;
    font-weight: 500;
    color: #626c82;
}

.loading-dots {
    display: inline-block;
    min-width: 1.2em;
    text-align: left;
}

.loading-dots span {
    opacity: 0;
    animation: loading-dot-blink 1.2s infinite;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loading-dot-blink {
    0%,
    20% {
        opacity: 0;
    }

    40%,
    100% {
        opacity: 1;
    }
}

.transcripts-page__empty-state:not(.transcripts-page__empty-state--no-record) .transcriptdivno {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 440px;
}

.transcripts-page__empty-state:not(.transcripts-page__empty-state--no-record) .transcripts-page__empty-copy p {
    color: #667085;
    font-size: 12px;
    font-weight: 400;
}


@media (max-width: 1199.98px) {

    .transcripts-page {
        padding: 24px;
    }

    .transcripts-page__search {
        width: 230px;
    }

    .transcripts-page__table thead th,
    .transcripts-page__table tbody td {
        padding-right: 18px;
        padding-left: 18px;
    }

}


@media (max-width: 991.98px) {

    .transcripts-page__toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .transcripts-page__tabs {
        width: 100%;
        padding-left: 8px;
    }

    .transcripts-page__actions {
        width: 100%;
        padding: 12px;
        border-top: 1px solid #edf1f5;
    }

    .transcripts-page__ai-upload-row {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .transcripts-page__ai-upload-btn {
        margin-left: auto;
    }

    .transcripts-page__search {
        flex: 1;
        width: auto;
    }

    .transcripts-page__table-card {
        overflow-x: auto;
    }

    .transcripts-page__table {
        min-width: 850px;
    }

    .transcripts-page__footer {
        flex-wrap: wrap;
    }

}


@media (max-width: 767.98px) {

    .transcripts-page {
        padding: 18px 14px;
    }

    .transcripts-page__header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .transcripts-page__title {
        font-size: 24px;
    }

    .transcripts-page__upload-btn {
        width: 100%;
    }

    .transcripts-page__tabs {
        height: 58px;
    }

    .transcripts-page__tabs .nav-link {
        flex: 1;
        justify-content: center;
        padding: 0 10px;
        font-size: 12px;
    }

    .transcripts-page__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .transcripts-page__search {
        width: 100%;
    }

    .transcripts-page__filter-btn {
        width: 100%;
    }

    .transcripts-page__tab-content {
        margin-top: 16px;
    }

    .transcripts-page__table-card {
        overflow: visible;
        border-radius: 9px;
    }

    /*
   * Convert table rows into cards on mobile.
   */
    .transcripts-page__table {
        min-width: 0;
    }

    .transcripts-page__table thead {
        display: none;
    }

    .transcripts-page__table tbody,
    .transcripts-page__table tr,
    .transcripts-page__table td {
        display: block;
        width: 100%;
    }

    .transcripts-page__table tbody tr {
        padding: 16px;
        border-bottom: 1px solid #edf1f5;
    }

    .transcripts-page__table tbody tr:last-child {
        border-bottom: 0;
    }

    .transcripts-page__table tbody td {
        height: auto;
        min-height: 0;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 8px 0;

        border: 0;
    }

    .transcripts-page__table tbody td::before {
        content: attr(data-label);

        margin-right: 16px;

        color: #667085;
        font-size: 10px;
        font-weight: 500;
        text-transform: uppercase;
    }

    .transcripts-page__table tbody td:first-child {
        padding-top: 0;
        padding-bottom: 14px;
    }

    .transcripts-page__table tbody td:first-child::before {
        display: none;
    }

    .transcripts-page__file {
        width: 100%;
    }

    .transcripts-page__file-name {
        max-width: calc(100vw - 120px);
    }

    .transcripts-page__status {
        min-width: 145px;
    }

    .transcripts-page__footer {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }

    .transcripts-page__count {
        text-align: center;
    }

    .transcripts-page__pagination {
        justify-content: center;
    }

    .transcripts-page__page-size {
        width: 100%;
    }

}


@media (max-width: 420px) {

    .transcripts-page {
        padding: 14px 10px;
    }

    .transcripts-page__title {
        font-size: 22px;
    }

    .transcripts-page__tabs {
        padding-left: 0;
    }

    .transcripts-page__tabs .nav-link {
        gap: 6px;
        font-size: 11px;
    }

    .transcripts-page__tab-icon {
        font-size: 15px;
    }

    .transcripts-page__pagination {
        gap: 3px;
    }

    .transcripts-page__page-btn {
        min-width: 30px;
        height: 32px;
    }

    .transcripts-page__dots {
        display: none;
    }

}

/* Shared redesigned list surfaces for profile pages. */
.profile-modern-page {
    width: 100%;
    padding: 0 28px 28px 28px;
    background: #f8fafc;
    color: #172033;
    padding-bottom: 0;
}

.profile-modern-page__header,
.profile-modern-page__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.profile-modern-page__header {
    margin-bottom: 15px;
    margin-top: 15px;
}

.profile-modern-page__title {
    margin: 0;
    color: #172033;
    font-size: 24px;
    font-weight: 500;
}

.profile-modern-page__subtitle {
    margin: 4px 0 0;
    color: #3e3e3e;
    font-size: 13px;
    font-weight: 400;
}
.profile-modern-page__header + .portal-kpi {
    padding-top: 0;
}

.profile-modern-page__toolbar {
    min-height: 56px;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 10px;
}

.profile-modern-page__tabs {
    display: flex;
    gap: 8px;
}

.profile-modern-page__tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    color: #667085;
    background: #f4f7fb;
    border: 1px solid #e8edf4;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
}

.profile-modern-page__tab.active {
    color: #175cd3;
    background: #eff8ff;
    border-color: #b9d0f8;
}

.profile-modern-page__card {
    overflow: hidden;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 10px;
    box-shadow: 0 2px 8px #17203308;
}

.profile-modern-page__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border-bottom: 1px solid #dfe5ed;
}
.vp-logout {
   color:  #DC2626!important;
}
.profile-modern-page__card-title {
    margin: 0;
    color: #172033;
    font-size: 16px;
    font-weight: 500;
    text-transform: inherit;
}
.profile-modern-page__table-wrap {
    max-height: calc(100vh - 32vh);
    overflow: auto;
}

.profile-modern-page__table {
    width: 100%;
    table-layout: fixed;
    margin: 0;
}

.profile-modern-page__table th,
.profile-modern-page__table td {
    padding: 14px 20px;
    border-bottom: 1px solid #edf1f5;
    vertical-align: middle;
    overflow: hidden;
}

.table-fields {
    color: #2e333c;
    font-size: 13px;
    font-weight: 400;
}

.profile-modern-page__table th {
    color: #344054;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    white-space: normal;
    text-transform: uppercase;
}

.profile-modern-page__table td {
    color: #344054;
    font-size: 12px;
}

.profile-modern-page__table tbody tr:hover {
    background: #fafcff;
}

.profile-modern-page__table tbody tr:last-child td {
    border-bottom: 0;
}

.profile-modern-page__table thead th i {
    margin-left: 6px;
    color: #98a2b3;
    font-size: 10px;
}

.profile-modern-page__table .w-5 {
    width: 5%;
}

.profile-modern-page__table .w-10 {
    width: 10%;
}

.profile-modern-page__table .w-15 {
    width: 15%;
}

.profile-modern-page__table .w-20 {
    width: 20%;
}

.profile-modern-page__table .w-25 {
    width: 25%;
}

.profile-modern-page__table .w-30 {
    width: 30%;
}

.profile-modern-page__table .w-35 {
    width: 35%;
}

.profile-modern-page__table .w-40 {
    width: 40%;
}

.profile-modern-page__table .w-55 {
    width: 55%;
}

.profile-modern-page__muted {
    color: #667085;
}

.profile-modern-page__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.profile-modern-page__status--success {
    color: #1b9126;
    background: #d7faeb;
}

.profile-modern-page__status--warning {
    color: #765ab3;
    background: #e3d4ff;
}

.profile-modern-page__status--danger {
    color: #eb1414;
    background: #fadfd7;
}

.profile-modern-page__status--info {
    color: #175cd3;
    background: #eff8ff;
}

.profile-modern-page__actions {
    display: inline-flex;
    justify-content: flex-end;
    gap: 6px;
    white-space: nowrap;
}

.profile-modern-page__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #475467;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
}

.profile-modern-page__action:hover {
    color: #175cd3;
    background: #f2f7ff;
    border-color: #d9e7ff;
}

.profile-modern-page__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 16px;
}

.profile-modern-page__stat {
    padding: 18px;
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 10px;
}

.profile-modern-page__stat-label {
    color: #667085;
    font-size: 11px;
}

.profile-modern-page__stat-value {
    margin-top: 8px;
    color: #172033;
    font-size: 22px;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .profile-modern-page {
        padding: 18px 14px;
    }

    .profile-modern-page__header,
    .profile-modern-page__toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .profile-modern-page__stats {
        grid-template-columns: 1fr;
    }

    .profile-modern-page__table {
        min-width: 720px;
    }

    .profile-modern-page__table-wrap {
        overflow-x: auto;
    }
}

/* Shared portal typography — used by section headers and action links across profile pages */
.portal-summary__label {
    margin: 0 0 10px;
    color: #263957;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.portal-summary__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-top: 0;
    color: #1769ff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.portal-summary__link i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.portal-summary__link:hover {
    color: #0d4fca;
    gap: 12px;
}

.portal-summary__link:hover i {
    transform: translateX(2px);
}

@media (max-width: 767.98px) {
    .portal-summary__label {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .portal-summary__label {
        margin-bottom: 8px;
        font-size: 13px;
    }

    .portal-summary__link {
        font-size: 12px;
    }
}

/* Dashboard KPI carousel — scoped to profile dashboard only */
.portal-kpi {
    width: 100%;
    padding: 0 24px 16px;
    background-color: #f7f9fc;
}

.portal-kpi__carousel {
    display: flex;
    align-items: center;
    gap: 8px;
}

.portal-kpi__track {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.portal-kpi__track::-webkit-scrollbar {
    display: none;
}

.portal-kpi__row {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    min-width: 100%;
    padding: 2px 0;
}

.portal-kpi__item {
    flex: 1 0 240px;
    min-width: 240px;
}

.portal-kpi__nav {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #d5dce6;
    border-radius: 50%;
    background: #fff;
    color: #1769ff;
    box-shadow: 0 2px 6px rgba(23, 43, 77, 0.08);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.portal-kpi__nav:hover:not(:disabled) {
    background: #f4f8ff;
    border-color: #1769ff;
}

.portal-kpi__nav--disabled,
.portal-kpi__nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.portal-kpi__nav .material-symbols-outlined {
    font-size: 22px;
    line-height: 1;
}

.portal-kpi__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.portal-kpi__head .portal-kpi__icon {
    margin-bottom: 0;
}

.portal-kpi__head .portal-kpi__label {
    margin: 0;
}

.portal-kpi__head .portal-kpi__skeleton-line--label {
    flex: 1;
    margin-bottom: 0;
}

.portal-kpi__value--with-meta {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}

.portal-kpi__meta {
    color: #576ea1;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.portal-kpi__card {
    position: relative;
    height: 100%;
    min-height: 148px;
    display: flex;
    flex-direction: column;
    padding: 16px;
    background-color: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 10px;
    box-shadow: 0 2px 8px #14213d0d;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.portal-kpi__card:hover {
    transform: translateY(-3px);
    border-color: #d8e2ef;
    box-shadow: 0 8px 22px #14213d14;
}

.portal-kpi__card--skeleton {
    pointer-events: none;
}

.portal-kpi__card--skeleton:hover {
    transform: none;
    border-color: #e8edf3;
    box-shadow: 0 2px 8px #14213d0d;
}

.portal-kpi__skeleton-icon,
.portal-kpi__skeleton-line {
    background: linear-gradient(90deg, #eef2f6 25%, #f8fafc 50%, #eef2f6 75%);
    background-size: 200% 100%;
    animation: portal-kpi-skeleton-shimmer 1.4s ease-in-out infinite;
    border-radius: 8px;
}

.portal-kpi__skeleton-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    border-radius: 10px;
}

.portal-kpi__head .portal-kpi__skeleton-icon {
    flex: 0 0 40px;
}

.portal-kpi__skeleton-line {
    display: block;
    height: 12px;
    margin-bottom: 10px;
}

.portal-kpi__skeleton-line--label {
    width: 62%;
    height: 14px;
}

.portal-kpi__skeleton-line--value {
    width: 48%;
    height: 26px;
    margin-bottom: 10px;
}

.portal-kpi__skeleton-line--meta {
    width: 78%;
    height: 10px;
    margin-top: -4px;
    margin-bottom: 10px;
}

.portal-kpi__skeleton-line--link {
    width: 38%;
    height: 12px;
    margin-bottom: 0;
    margin-top: auto;
}

@keyframes portal-kpi-skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.portal-kpi__icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 36px;
}

.portal-kpi__icon--blue {
    color: #1769ff;
    background-color: #eaf2ff;
}

.portal-kpi__card .material-symbols-outlined {
    font-size: 22px;
}

.portal-kpi__icon--purple {
    color: #7657e8;
    background-color: #f0edff;
}

.portal-kpi__icon--orange {
    color: #f79009;
    background-color: #fff4df;
}

.portal-kpi__icon--red {
    color: #ef233c;
    background-color: #ffedf0;
}

.portal-kpi__icon--green {
    color: #12a66a;
    background-color: #e8f8f1;
}

.portal-kpi__label {
    margin: 0;
    color: #263957;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.portal-kpi__value {
    margin-bottom: 10px;
    color: #15233f;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.portal-kpi__value--danger {
    color: #ef233c;
    font-size: 26px;
    white-space: nowrap;
}

.portal-kpi__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-top: auto;
    color: #1769ff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.portal-kpi__link:hover {
    color: #0d4fca;
    gap: 10px;
}

@media (min-width: 1400px) {
    .portal-kpi {
        padding: 0 0 16px;
    }

    .portal-kpi__card {
        min-height: 152px;
        padding: 16px 18px;
    }
}

@media (max-width: 1199.98px) {
    .portal-kpi {
        padding: 0 20px 16px;
    }

    .portal-kpi__card {
        min-height: 148px;
    }
}

@media (max-width: 767.98px) {
    .portal-kpi {
        padding: 0 14px 14px;
    }

    .portal-kpi__card {
        min-height: 142px;
        padding: 14px;
    }

    .portal-kpi__head .portal-kpi__icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        margin-bottom: 0;
    }

    .portal-kpi__label {
        font-size: 13px;
    }

    .portal-kpi__value {
        font-size: 26px;
    }

    .portal-kpi__value--danger {
        font-size: 24px;
    }
}

@media (max-width: 575.98px) {
    .portal-kpi {
        padding: 0 12px 12px;
    }

    .portal-kpi__card {
        min-height: 138px;
        padding: 14px;
    }
.ui-tooltip-content{
    display: none;visibility: hidden;
}
    .portal-kpi__head .portal-kpi__icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        margin-bottom: 0;
        border-radius: 9px;
        font-size: 20px;
    }

    .portal-kpi__label {
        font-size: 13px;
    }

    .portal-kpi__value {
        font-size: 24px;
    }

    .portal-kpi__value--danger {
        font-size: 22px;
    }

    .portal-kpi__link {
        font-size: 12px;
    }
}

.matrixline {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    width: 100%;
}

.dashboard-wrapper {
    width: 100%;
    min-height: 100%;
    padding: 18px 0;
    background-color: #F7F9FC;
    padding-right: 20px;
}

.action-card {
    width: 100%;
    min-height: 610px;
    background-color: #fff;
    border: 1px solid #E4E9F0;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 6px #172b4d0a,0 8px 24px #172b4d0d;
    display: flex;
    flex-direction: column;
    max-height: 610px;
}

.radius6 {
    border-radius: 8px;
}

.action-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.header-icon {
    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #EF233C;
}

.header-icon .material-symbols-outlined {
    font-size: 27px;
    font-weight: 500;
}

.action-header h5 {
    margin: 0;

    color: #172B4D;

    font-size: 20px;
    font-weight: 500;

    line-height: 1.3;
}

.profile-modern-page__table-wrapp {
    max-height: calc(100vh - 20vh);
    overflow: auto;
}

.action-card .profile-modern-page__table-wrapp {
    flex: 1;
    min-height: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.action-card .profile-modern-page__table-wrapp::-webkit-scrollbar {
    display: none;
}

.action-item {
    width: 100%;
    min-height: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 14px;
    margin-bottom: 14px;

    background-color: #FFFFFF;

    border: 1px solid #E4E9F0;
    border-radius: 9px;

    box-shadow:
        0 1px 3px rgba(23, 43, 77, 0.03);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.action-item:hover {
    border-color: #D5DCE6;

    box-shadow:
        0 3px 8px rgba(23, 43, 77, 0.06);

    transform: translateY(-1px);
}

.action-item--skeleton {
    pointer-events: none;
}

.action-item--skeleton:hover {
    border-color: #E4E9F0;
    box-shadow: 0 1px 3px rgba(23, 43, 77, 0.03);
    transform: none;
}

.action-item__skeleton-icon,
.action-item__skeleton-line,
.action-item__skeleton-btn,
.action-item__skeleton-footer {
    background: linear-gradient(90deg, #eef2f6 25%, #f8fafc 50%, #eef2f6 75%);
    background-size: 200% 100%;
    animation: portal-summary-skeleton-shimmer 1.4s ease-in-out infinite;
    border-radius: 8px;
}

.action-item__skeleton-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 10px;
}

.action-item__skeleton-content {
    flex: 1;
    min-width: 0;
}

.action-item__skeleton-line {
    display: block;
    height: 12px;
    margin-bottom: 10px;
}

.action-item__skeleton-line--title {
    width: 72%;
    height: 14px;
}

.action-item__skeleton-line--desc {
    width: 55%;
    margin-bottom: 0;
}

.action-item__skeleton-btn {
    flex: 0 0 88px;
    width: 88px;
    height: 36px;
    border-radius: 7px;
}

.action-item__skeleton-footer {
    width: 100%;
    height: 40px;
    border-radius: 7px;
}
.odm-item-card
.checkiconsab {
    position: absolute;
    left: 18px;
    top: -15px;
}
.item-left {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.item-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon .material-symbols-outlined {
    font-size: 24px;
    font-weight: 400;
}


.invoice-icon {
    background-color: #FFF0F2;
    color: #EF233C;
}

.transcript-icon {
    background-color: #EDF5FF;
    color: #1769E0;
}


.order-icon {
    background-color: #EAF9F3;
    color: #17A673;
}

.item-content {
    min-width: 0;
    display: flex;
    flex-flow: column;
    gap: 3px;
}

.item-title {
    color: #172B4D;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 3px;
}

.item-description {
    color: #53657D;
    font-size: 12px;
    font-weight: 400;
    line-height: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.action-btn {
    flex: 0 0 auto;
    min-width: auto;
    height: 30px;
    padding: 0 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.action-item .d-flex.gap-10 {
    gap: 8px;
    margin-top: 8px;
}

.action-item__footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}

.action-item__date {
    color: #1769E0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

.btn-danger-custom {
    color: #FFFFFF;

    background-color: #EF233C;

    border: 1px solid #EF233C;

    box-shadow:
        0 2px 5px rgba(239, 35, 60, 0.20);
}

.btn-danger-custom:hover {
    background-color: #DC1730;
    border-color: #DC1730;

    transform: translateY(-1px);
}


.btn-primary-custom {
    color: #FFFFFF;

    background-color: #1769E0;

    border: 1px solid #1769E0;

    box-shadow:
        0 2px 5px rgba(23, 105, 224, 0.20);
}

.btn-primary-custom:hover {
    background-color: #0958C9;
    border-color: #0958C9;

    transform: translateY(-1px);
}


.btn-outline-custom {
    color: #172B4D;

    background-color: #FFFFFF;

    border: 1px solid #E4E9F0;
}

.btn-outline-custom:hover {
    color: #1769E0;

    background-color: #EDF5FF;

    border-color: #B9D4F7;
}



.action-footer {
    margin-top: auto;
    padding-top: 35px;
}

.notification-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1769E0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
}

.notification-link:hover {
    color: #0958C9;
}

.notification-link .material-symbols-outlined {
    font-size: 20px;

    transition:
        transform 0.2s ease;
}

.notification-link:hover .material-symbols-outlined {
    transform: translateX(3px);
}


.calendar-card {
    width: 100%;
    min-height: 565px;

    background-color: #FFFFFF;

    border: 1px solid #E4E9F0;
    border-radius: 12px;

    padding: 24px;

    box-shadow:
        0 2px 6px rgba(23, 43, 77, 0.04),
        0 8px 24px rgba(23, 43, 77, 0.05);

    overflow: hidden;
}

.calendar-title {
    color: #172B4D;

    font-size: 20px;
    font-weight: 500;

    margin-bottom: 26px;
}

.calendar-month {
    color: #172B4D;

    font-size: 25px;
    font-weight: 500;

    margin-bottom: 20px;
}


/* =========================================================
   CALENDAR WEEKDAYS
========================================================= */

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);

    text-align: center;

    margin-bottom: 8px;
}

.calendar-weekdays span {
    color: #53657D;

    font-size: 12px;
    font-weight: 600;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);

    border-top: 1px solid #E4E9F0;
    border-left: 1px solid #E4E9F0;
}

.calendar-date {
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #172B4D;

    font-size: 14px;
    font-weight: 500;

    border-right: 1px solid #E4E9F0;
    border-bottom: 1px solid #E4E9F0;

    transition: background-color 0.2s ease;
}

.calendar-date:hover {
    background-color: #EDF5FF;
}

.calendar-date.muted {
    color: #B8C1CD;
}


.calendar-event {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 28px;

    color: #53657D;

    font-size: 14px;
    font-weight: 600;
}

.event-dot {
    width: 12px;
    height: 12px;

    flex: 0 0 12px;

    border-radius: 50%;

    background-color: #1769E0;
}


@media (max-width: 1199.98px) {

    .dashboard-wrapper {
        padding: 20px;
    }

    .action-card,
    .calendar-card {
        min-height: auto;
    }

    .calendar-card {
        margin-top: 0;
    }
}


@media (max-width: 767.98px) {

    .dashboard-wrapper {
        padding: 14px;
    }

    .action-card,
    .calendar-card {
        padding: 18px;
        border-radius: 10px;
    }

    .action-header {
        margin-bottom: 16px;
    }

    .action-header h5 {
        font-size: 18px;
    }

    .action-item {
        align-items: flex-start;

        flex-direction: column;

        gap: 14px;

        padding: 14px;

        margin-bottom: 10px;
    }

    .item-left {
        width: 100%;
        gap: 12px;
    }

    .item-icon {
        flex-basis: 46px;

        width: 46px;
        height: 46px;

        border-radius: 9px;
    }

    .item-icon .material-symbols-outlined {
        font-size: 24px;
    }

    .item-title {
        font-size: 14px;
    }

    .item-description {
        font-size: 13px;

        white-space: normal;
    }

    .action-btn {
        width: 100%;
        height: 34px;
    }

    .action-item__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .action-item__date {
        white-space: normal;
    }

    .action-footer {
        padding-top: 20px;
    }

    .notification-link {
        font-size: 14px;
    }

    .calendar-title {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .calendar-month {
        font-size: 21px;
    }

    .calendar-date {
        min-height: 44px;
        font-size: 12px;
    }
}



@media (max-width: 400px) {

    .dashboard-wrapper {
        padding: 10px;
    }

    .action-card,
    .calendar-card {
        padding: 14px;
    }

    .item-left {
        align-items: flex-start;
    }

    .item-icon {
        flex-basis: 42px;

        width: 42px;
        height: 42px;
    }

    .item-title {
        font-size: 13px;
    }

    .item-description {
        font-size: 12px;
    }

    .calendar-date {
        min-height: 38px;
    }
}

.redeem-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
}

.redeem-page__header-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.redeem-page__header-meta .material-symbols-outlined {
    color: #576ea1;
    font-size: 28px;
}

.redeem-page__panel {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 10px;
    box-shadow: 0 2px 8px #17203308;
}

.redeem-page__panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: #f4f7fb;
    border-bottom: 1px solid #dfe5ed;
}

.redeem-page__panel-body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.redeem-page__state {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

.redeem-page__catalog-list,
.redeem-cart-list {
    flex: 1;
    min-height: 0;
    overflow: auto;
}

.redeem-page__catalog-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 4px;
    padding: 15px;
}

.redeem-reward-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 10px;
}

.redeem-reward-item__media,
.redeem-cart-item__media {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f6fa;
}

.redeem-reward-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.redeem-reward-item__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.redeem-reward-item__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.redeem-reward-item__title {
    margin: 0;
    color: #172033;
    font-size: 14px;
    font-weight: 500;
}

.redeem-reward-item__points {
    flex: 0 0 auto;
    color: #d64545;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.redeem-reward-item__desc {
    margin: 0;
    color: #3e3e3e;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
}

.redeem-reward-item__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.redeem-cart-list {
    display: flex;
    flex-direction: column;
}

.redeem-cart-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto auto;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #e8edf4;
}

.redeem-cart-item:last-child {
    border-bottom: none;
}

.redeem-cart-item__info {
    min-width: 0;
}

.redeem-cart-item__name {
    display: block;
    margin-bottom: 4px;
    color: #172033;
    font-size: 14px;
    font-weight: 600;
    word-break: break-word;
}

.redeem-cart-item__points {
    color: #576ea1;
    font-size: 13px;
    font-weight: 600;
}

.redeem-page__qty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.redeem-page__qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid #d5dce6;
    border-radius: 8px;
    background: #fff;
    color: #1769e0;
    cursor: pointer;
}

.redeem-page__qty-btn .material-symbols-outlined {
    font-size: 18px;
}

.redeem-page__qty-btn:hover {
    border-color: #1769e0;
    background: #f4f8ff;
}

.redeem-page__qty-value {
    min-width: 18px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.redeem-cart-item__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #d64545;
    cursor: pointer;
}

.redeem-cart-item__remove:hover {
    background: #fff1f1;
}

.redeem-page__cart-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: #f4f7fb;
    border-top: 1px solid #dfe5ed;
}

.redeem-page__total {
    color: #172033;
    font-size: 15px;
}

.redeem-page__total strong {
    font-size: 18px;
}

.redeem-page__submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.redeem-page__submit-btn .material-symbols-outlined {
    font-size: 18px;
}

@media (max-width: 991px) {
    .redeem-page__layout {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .redeem-page__panel {
        min-height: 420px;
    }

    .redeem-cart-item {
        grid-template-columns: 56px minmax(0, 1fr);
        grid-template-areas:
            "media info"
            "qty remove";
    }

    .redeem-cart-item__media {
        grid-area: media;
    }

    .redeem-cart-item__info {
        grid-area: info;
    }

    .redeem-page__qty {
        grid-area: qty;
        justify-self: start;
    }

    .redeem-cart-item__remove {
        grid-area: remove;
        justify-self: end;
    }
}
/* Account profile page — scoped layout and panels */
.account-profile {
    padding: 28px;
    background: #f8fafc;
}

.account-profile__layout {
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.account-profile__sidebar {
    position: sticky;
    top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.account-profile__identity {
    padding: 24px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 10px;
    box-shadow: 0 2px 8px #17203308;
}

.account-profile__avatar {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin: 0 auto 14px;
    color: #175cd3;
    background: #eff8ff;
    border: 1px solid #b9d0f8;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
}

.account-profile__avatar-edit {
    position: absolute;
    right: -2px;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    color: #175cd3;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 50%;
    cursor: pointer;
}

.account-profile__avatar-edit .material-symbols-outlined {
    font-size: 16px;
}

.account-profile__name {
    margin: 0 0 6px;
    color: #172033;
    font-size: 18px;
    font-weight: 700;
}

.account-profile__account {
    margin: 0 0 12px;
    color: #576ea1;
    font-size: 12px;
    line-height: 1.4;
}

.account-profile__status {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    color: #175cd3;
    background: #eff8ff;
    border: 1px solid #b9d0f8;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}

.account-profile__nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 10px;
}
.account-profile__nav-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    text-align: left;
    color: #667085;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.account-profile__nav-item .material-symbols-outlined {
    font-size: 20px;
    margin-top: 2px;
}

.account-profile__nav-item strong {
    display: block;
    color: inherit;
    font-size: 13px;
    font-weight: 600;
}

.account-profile__nav-item small {
    display: block;
    margin-top: 2px;
    color: #98a2b3;
    font-size: 11px;
    font-weight: 500;
}

.account-profile__nav-item:hover {
    background: #f8fafc;
    color: #344054;
}

.account-profile__nav-item--active {
    color: #175cd3;
    background: #eff8ff;
    border-left-color: #175cd3;
}

.account-profile__nav-item--active small {
    color: #528bdf;
}

.account-profile__help {
    padding: 18px 16px;
    text-align: center;
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 10px;
}

.account-profile__help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    color: #175cd3;
    background: #eff8ff;
    border-radius: 50%;
}

.account-profile__help strong {
    display: block;
    margin-bottom: 6px;
    color: #172033;
    font-size: 13px;
}

.account-profile__help p {
    margin: 0 0 12px;
    color: #667085;
    font-size: 11px;
    line-height: 1.5;
}

.account-profile__help-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    color: #175cd3;
    background: #eff8ff;
    border: 1px solid #b9d0f8;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.account-profile__main {
    min-width: 0;
    min-height: 0;
    height: 100%;
    overflow: auto;
}

.account-profile__header {
    margin-bottom: 16px;
}

.account-profile .profile-modern-page__card {
    margin-bottom: 20px;
}

.account-profile .profile-modern-page__table .w-55 {
    width: 55%;
}

.account-profile .transcripts-page__action-group .close {
    float: none;
    opacity: 1;
    width: auto;
    height: auto;
    font-size: inherit;
    font-weight: 400;
    line-height: 1;
    text-shadow: none;
}

.account-profile .transcripts-page__empty-state--no-record {
    min-height: 200px;
}

.account-profile .form-control[readonly] {
    color: #667085;
    background: #f9fafb;
}

.account-profile__loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 240px;
    color: #667085;
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 10px;
}

.account-profile__panel {
    margin-bottom: 16px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 12px;
    box-shadow: 0 2px 8px #17203308;
}

.account-profile__panel--narrow {
    max-width: 560px;
}

.account-profile__panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.account-profile__panel-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    gap: 8px;
}

.account-profile__panel-title {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.account-profile__panel-title h2 {
    margin: 0;
    color: #172033;
    font-size: 16px;
    font-weight: 700;
}

.account-profile__panel-title p {
    margin: 4px 0 0;
    color: #667085;
    font-size: 12px;
}

.account-profile__panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.account-profile__panel-icon .material-symbols-outlined {
    font-size: 20px;
}

.account-profile__panel-icon--blue {
    color: #175cd3;
    background: #eff8ff;
}

.account-profile__panel-icon--green {
    color: #039855;
    background: #ecfdf3;
}

.account-profile__panel-icon--purple {
    color: #6941c6;
    background: #f4f3ff;
}

.account-profile__panel-icon--orange {
    color: #dc6803;
    background: #fffaeb;
}

.account-profile__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    padding: 16px 20px 20px;
}

.account-profile__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.account-profile__field label {
    margin: 0;
    color: #344054;
    font-size: 12px;
    font-weight: 600;
}

.account-profile__input {
    width: 100%;
    min-height: 38px;
    padding: 8px 12px;
    color: #172033;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    font-size: 13px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.account-profile__input:focus {
    outline: none;
    border-color: #84adff;
    box-shadow: 0 0 0 3px #eff8ff;
}

.account-profile__input[readonly] {
    color: #667085;
    background: #f9fafb;
}

textarea.account-profile__input {
    min-height: 72px;
    resize: vertical;
}

.account-profile__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 32px;
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
}

.account-profile__btn .material-symbols-outlined {
    font-size: 16px;
}

.account-profile__btn--primary {
    color: #fff;
    background: #175cd3;
    border-color: #175cd3;
}

.account-profile__btn--primary:hover:not(:disabled) {
    background: #1849a9;
    border-color: #1849a9;
}

.account-profile__btn--ghost {
    color: #175cd3;
    background: #eff8ff;
    border-color: #b9d0f8;
}

.account-profile__btn--outline {
    color: #344054;
    background: #fff;
    border-color: #d0d5dd;
}

.account-profile__btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.account-profile__table-wrap {
    overflow-x: auto;
}

.account-profile__table {
    width: 100%;
    border-collapse: collapse;
}

.account-profile__table th,
.account-profile__table td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid #eef2f6;
    font-size: 13px;
}

.account-profile__table th {
    color: #667085;
    background: #f9fafb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.account-profile__table td {
    color: #344054;
}

.account-profile__table tbody tr:hover {
    background: #fafbfc;
}

.account-profile__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.account-profile__icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    color: #175cd3;
    background: #eff8ff;
    border: 1px solid #b9d0f8;
    border-radius: 7px;
    cursor: pointer;
}

.account-profile__icon-btn .material-symbols-outlined {
    font-size: 16px;
}

.account-profile__icon-btn--danger {
    color: #d92d20;
    background: #fef3f2;
    border-color: #fecdca;
}

.account-profile__empty {
    padding: 24px 16px;
    color: #667085;
    background: #f9fafb;
    border: 1px solid #eef2f6;
    border-radius: 10px;
    text-align: center;
    font-size: 13px;
}

.account-profile__empty--dashed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 36px 20px;
    background: #fff;
    border: 1px dashed #d0d5dd;
}

.account-profile__empty--dashed .material-symbols-outlined {
    color: #98a2b3;
    font-size: 28px;
}

.account-profile__empty--dashed strong {
    color: #344054;
    font-size: 14px;
}

.account-profile__empty--dashed p {
    margin: 0;
    max-width: 320px;
    font-size: 12px;
}

.account-profile__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 8px;
    padding-top: 16px;
}

.account-profile__footer--inline {
    margin-top: 20px;
    padding-top: 0;
    border-top: none;
}

.account-profile__password-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.account-profile__password-field {
    position: relative;
}

.account-profile__password-field .account-profile__input {
    padding-right: 42px;
}

.account-profile__password-toggle {
    position: absolute;
    top: 50%;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    color: #667085;
    background: transparent;
    border: none;
    transform: translateY(-50%);
    cursor: pointer;
}

.account-profile__password-toggle .material-symbols-outlined {
    font-size: 18px;
}

.account-profile__error {
    margin: 4px 0 0;
    color: #d92d20;
    font-size: 12px;
}

@media (max-width: 991px) {
    .account-profile__layout {
        grid-template-columns: 1fr;
    }

    .account-profile__sidebar {
        position: static;
    }

    .account-profile__form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .account-profile {
        padding: 16px;
    }

    .account-profile__panel-header {
        flex-direction: column;
        align-items: stretch;
    }

    .account-profile__footer {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .account-profile__footer .account-profile__btn {
        width: 100%;
    }
}

:host {
  display: block;
}

#payment-modern.profile-modern-page {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.payment-page-body {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  flex: 1 1 auto;
  min-height: calc(100vh - 110px);
  position: relative;
  overflow: hidden;
  padding-right: 0;
  transition: padding-right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.payment-page-body.is-panel-open {
  padding-right: 436px;
}

.payment-page-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.payment-page-body .transcripts-page__table-card {
  flex: 1;
  min-height: 0;
}

.payment-page-body.is-panel-open .transcripts-page__table-card {
  min-width: 0;
}

.payment-detail-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 420px;
  max-width: 420px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e8edf4;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(23, 32, 51, 0.08);
  transform: translateX(110%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s ease;
}

.payment-detail-panel.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.payment-detail-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  padding: 16px 18px;
  background: #f4f7fb;
  border-bottom: 1px solid #dfe5ed;
}

.payment-detail-panel__header-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.payment-detail-panel__title {
  margin: 0;
  color: #172033;
  font-size: 14px;
  font-weight: 500;
}

.payment-detail-panel__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #edf1f5;
  color: #344054;
  cursor: pointer;
}

.payment-detail-panel__close:hover {
  background: #e8edf4;
  color: #172033;
}

.payment-detail-panel__close .material-symbols-outlined {
  font-size: 18px;
}

.payment-detail-panel .action-item {
  margin-bottom: 10px;
}

.payment-detail-panel .action-item:last-child {
  margin-bottom: 0;
}

.payment-detail-panel .item-left {
  flex: 1;
  min-width: 0;
}

.payment-detail-panel .item-description--wrap {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.payment-detail-panel__body {
  flex: 1;
  min-height: 0;
  padding: 14px 16px;
  overflow-y: auto;
}

.payment-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #e8edf4;
  border-radius: 10px;
  box-shadow: 0 2px 8px #17203308;
}

.payment-detail-card:last-child {
  margin-bottom: 0;
}

.payment-detail-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #eff6ff;
  color: #175cd3;
}

.payment-detail-card__icon .material-symbols-outlined {
  font-size: 20px;
}

.payment-detail-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.payment-detail-card__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.payment-detail-card__row--bottom {
  align-items: center;
  padding-top: 4px;
  border-top: 1px solid #edf1f5;
}

.payment-detail-card__row .transcripts-page__filter-btn {
  flex-shrink: 0;
}

.payment-detail-card__name {
  display: block;
    word-break: break-word;
    color: #172B4D;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 3px;
}

.payment-detail-card__desc {
    margin: 0;
    color: #2e3543;
    font-size: 12px;
    line-height: 1.45;
    word-break: break-word;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.payment-detail-card__amount {
  color: #172033;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.payment-detail-panel__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  padding: 14px 18px;
  background: #f4f7fb;
  border-top: 1px solid #dfe5ed;
}

.payment-detail-panel__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #667085;
  font-size: 13px;
}

.payment-detail-panel__summary strong {
  color: #172033;
  font-weight: 600;
}

.payment-detail-panel__summary-value {
  display: flex;
  align-items: center;
  gap: 4px;
}

.payment-detail-panel__edit-amount {
  display: flex;
  align-items: center;
  gap: 6px;
}

.payment-detail-panel__edit-amount .form-control {
  width: 120px;
  height: 32px;
  padding: 4px 8px;
}

.payment-detail-panel__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid #dfe5ed;
}

.payment-detail-card__amount-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-detail-card__amount-meta--end {
  text-align: right;
}

@media (max-width: 991px) {
  .payment-page-body {
    flex-direction: column;
  }

  .payment-page-body.is-panel-open {
    padding-right: 0;
  }

  .payment-detail-panel {
    width: 100%;
    max-width: 100%;
    left: 0;
  }

  .payment-detail-card__row {
    flex-direction: column;
  }
}
.footer-section .footer {
  width: 100%;
  margin: 0;
  background: linear-gradient(100deg, #1769e0 0%, #2359a5 100%);
  border-top: 1px solid #2f75dc;
  box-shadow: 0 -5px 16px rgba(23, 105, 224, 0.15);
}
.item-center{align-items: center;}
.footer-section .footer-bottom {
  min-height: auto;
}

.footer-section .footer-bottom__content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: auto;
  padding: 5px 32px;
}

.footer-section .footer-bottom__identity,
.footer-section .footer-bottom__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-section .footer-bottom__identity {
  grid-column: 2;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.footer-section .footer-bottom__faq {
  grid-column: 1;
  justify-self: start;
}

.footer-section .footer-bottom__actions {
  grid-column: 3;
  justify-self: end;
}

.footer-section .footer-bottom__faq {
  padding: 0;
  color: #ffffff;
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.footer-section .footer-socialicons-copyright {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  border: 0;
}

.footer-section .footer-bottom ul.social {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  float: none !important;
}

.footer-section .footer-bottom .social li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0;
  line-height: 1;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-section .footer-bottom .social li:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-section .footer-bottom .social li a i {
  display: block;
  margin: 0;
  font-size: 15px;
  line-height: 1;
  color: #ffffff;
}

.footer-section .footer-bottom  .social li a .footer-social__x {
    display: flex;
    justify-content: center;
    position: relative;
    top: -3px;
    left: 1px;
  width: 14px;
  height: 14px;
}
.footer-section .footer .footer-socialicons-copyright ul li a:hover {
    color: #fff;
}
.footer-section .footer-bottom .social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  line-height: 1;
}

@media (max-width: 767.98px) {
  .footer-section .footer-bottom__content {
    min-height: 76px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-section .footer-bottom__identity,
  .footer-section .footer-bottom__actions {
    gap: 12px;
  }
}

/* Fit all profile pages except dashboard to remaining device height,
   matching the payment-due cart-reference panel. */
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) {
  --profile-page-offset: 50px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: calc(100vh - var(--profile-page-offset));
  min-height: calc(100vh - var(--profile-page-offset));
  max-height: calc(100vh - var(--profile-page-offset));
  overflow: hidden;
}

@supports (height: 100dvh) {
  .profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) {
    height: calc(100dvh - var(--profile-page-offset));
    min-height: calc(100dvh - var(--profile-page-offset));
    max-height: calc(100dvh - var(--profile-page-offset));
  }
}
.profile-modern-page.content-full:has(> .transcripts-page.transcriptlisting) {
  --profile-page-offset: 55px;
}
.profile-modern-page.content-full:has(> .transcripts-page.ordelristing) {
  --profile-page-offset: 60px;
}
/* Transcripts: fill remaining viewport; table body uses the 32vh inner scroll. */
.profile-modern-page.content-full:has(> .transcripts-page) {
  --profile-page-offset: 70px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: calc(100vh - var(--profile-page-offset));
  height: calc(100vh - var(--profile-page-offset));
  max-height: calc(100vh - var(--profile-page-offset));
  overflow: hidden;
}

@supports (height: 100dvh) {
  .profile-modern-page.content-full:has(> .transcripts-page) {
    min-height: calc(100dvh - var(--profile-page-offset));
    height: calc(100dvh - var(--profile-page-offset));
    max-height: calc(100dvh - var(--profile-page-offset));
  }
}

.profile-modern-page.content-full:has(> .transcripts-page) > .transcripts-page {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  height: calc(100vh - var(--profile-page-offset));
  max-height: calc(100vh - var(--profile-page-offset));
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-sizing: border-box;
}

@supports (height: 100dvh) {
  .profile-modern-page.content-full:has(> .transcripts-page) > .transcripts-page {
    height: calc(100dvh - var(--profile-page-offset));
    max-height: calc(100dvh - var(--profile-page-offset));
  }
}

.profile-modern-page.content-full:has(> .transcripts-page) .profile-modern-page__header,
.profile-modern-page.content-full:has(> .transcripts-page) .transcripts-page__toolbar,
.profile-modern-page.content-full:has(> .transcripts-page) .shared-access-banner,
.profile-modern-page.content-full:has(> .transcripts-page) .d-fixed-search,
.profile-modern-page.content-full:has(> .transcripts-page) .job-aplication-page {
  flex-shrink: 0;
}

.profile-modern-page.content-full:has(> .transcripts-page) .tab-content {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.profile-modern-page.content-full:has(> .transcripts-page) .tab-content > .tab-pane {
  display: none;
  flex: 0 0 auto;
}

.profile-modern-page.content-full:has(> .transcripts-page) .tab-content > .tab-pane.active {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.profile-modern-page.content-full:has(> .transcripts-page) .transcripts-page__table-card {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 0;
  box-sizing: border-box;
}

.profile-modern-page.content-full:has(> .transcripts-page) .transcripts-page__table-card > [class*="col-"] {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  float: none;
}

.profile-modern-page.content-full:has(> .transcripts-page) .transcripts-page__table-card > [class*="col-"]:has(.calendarorders),
.profile-modern-page.content-full:has(> .transcripts-page) .transcripts-page__table-card > [class*="col-"]:has(.table-responsive),
.profile-modern-page.content-full:has(> .transcripts-page) .transcripts-page__table-card > [class*="col-"]:has(.transcripts-page__empty-state) {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profile-modern-page.content-full:has(> .transcripts-page) .table-responsive.table-scroll {
  flex: 1 1 auto;
  display: block;
  overflow-x: hidden;
  overflow-y: hidden;
}

.profile-modern-page.content-full:has(> .transcripts-page) .table-responsive.table-scroll > table {
  display: table;
  width: 100%;
  height: auto;
  margin: 0;
}

.profile-modern-page.content-full:has(> .transcripts-page) .table-responsive.table-scroll thead,
.profile-modern-page.content-full:has(> .transcripts-page) .transcripts-page__table-card .table-responsive.table-scroll thead {
  display: table;
  width: 100%;
  table-layout: fixed;
  position: sticky;
  top: 0;
  z-index: 2;
}

.profile-modern-page.content-full:has(> .transcripts-page) .table-responsive.table-scroll thead th,
.profile-modern-page.content-full:has(> .transcripts-page) .transcripts-page__table-card .table-responsive.table-scroll thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}

.profile-modern-page.content-full:has(> .transcripts-page) .table-responsive.table-scroll tbody,
.profile-modern-page.content-full:has(> .transcripts-page) .transcripts-page__table-card .table-responsive.table-scroll tbody {
  display: block;
  height: calc(100vh - 32vh);
  min-height: calc(100vh - 32vh);
  max-height: calc(100vh - 32vh);
  overflow-y: auto;
  overflow-x: hidden;
}

@supports (height: 100dvh) {
  .profile-modern-page.content-full:has(> .transcripts-page) .table-responsive.table-scroll tbody,
  .profile-modern-page.content-full:has(> .transcripts-page) .transcripts-page__table-card .table-responsive.table-scroll tbody {
    height: calc(100dvh - 32vh);
    min-height: calc(100dvh - 32vh);
    max-height: calc(100dvh - 32vh);
  }
  
  .profile-modern-page.content-full:has(> .transcripts-page.transcriptlisting) .transcripts-page__table-card .table-responsive.table-scroll tbody {
    height: calc(100dvh - 37vh);
    min-height: calc(100dvh - 37vh);
    max-height: calc(100dvh - 37vh);
  }
}

.profile-modern-page.content-full:has(> .transcripts-page) .table-responsive.table-scroll tbody tr,
.profile-modern-page.content-full:has(> .transcripts-page) .transcripts-page__table-card .table-responsive.table-scroll tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.profile-modern-page.content-full:has(> .transcripts-page) .no-record-found,
.profile-modern-page.content-full:has(> .transcripts-page) .card-loading-state,
.profile-modern-page.content-full:has(> .transcripts-page) .transcripts-page__empty-state--no-record {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .profile-modern-page.content-full:has(> .transcripts-page) {
    --profile-page-offset: 110px;
  }

  .profile-modern-page.content-full:has(> .transcripts-page) .transcripts-page__table thead,
  .profile-modern-page.content-full:has(> .transcripts-page) .table-responsive.table-scroll thead {
    display: none;
  }

  .profile-modern-page.content-full:has(> .transcripts-page) .transcripts-page__table tbody,
  .profile-modern-page.content-full:has(> .transcripts-page) .transcripts-page__table tr,
  .profile-modern-page.content-full:has(> .transcripts-page) .transcripts-page__table td,
  .profile-modern-page.content-full:has(> .transcripts-page) .table-responsive.table-scroll tbody,
  .profile-modern-page.content-full:has(> .transcripts-page) .table-responsive.table-scroll tbody tr {
    display: block;
    width: 100%;
  }
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .profile-modern-page__header,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .account-profile__header,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .profile-modern-page__card-header,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .shared-access-banner,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__toolbar,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .d-fixed-search,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .skills-container {
  flex-shrink: 0;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) > .transcripts-page,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) > .content-full,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) > .payment-page-body,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) > .profile-modern-page__card,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) > .account-profile__layout,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) > .redeem-page__layout {
  flex: 1 1 auto;
  min-height: 0;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) > .transcripts-page,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) > .content-full {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background: transparent;
  min-height: 0;
  height: auto;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .payment-page-main {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .payment-page-main > .profile-modern-page__card,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) > .profile-modern-page__card {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 0;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .job-aplication-page {
  flex: 0 0 auto;
  float: none;
  width: 100%;
  max-width: 100%;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__tab-content,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .tab-content {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .tab-content > .tab-pane {
  display: none;
  flex: 0 0 auto;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .tab-content > .tab-pane.active {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__table-card {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 0;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__table-card > [class*="col-"] {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  float: none;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__table-card > [class*="col-"]:has(.calendarorders),
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__table-card > [class*="col-"]:has(.table-responsive),
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__table-card > [class*="col-"]:has(.transcripts-page__empty-state) {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .table-responsive.table-scroll,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .profile-modern-page__table-wrap {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  display: block;
  overflow: auto;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .table-responsive.table-scroll > table,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .profile-modern-page__table-wrap > table {
  display: table;
  width: 100%;
  height: auto;
  margin: 0;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .table-responsive.table-scroll thead,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__table-card .table-responsive.table-scroll thead {
  display: table-header-group;
  position: sticky;
  top: 0;
  z-index: 2;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .table-responsive.table-scroll thead th,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__table-card .table-responsive.table-scroll thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .table-responsive.table-scroll tbody,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__table-card .table-responsive.table-scroll tbody,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .profile-modern-page__table-wrap tbody {
  display: table-row-group;
  max-height: none;
  overflow: visible;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .table-responsive.table-scroll tbody tr,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__table-card .table-responsive.table-scroll tbody tr {
  display: table-row;
  width: auto;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .no-record-found,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .card-loading-state,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__empty-state--no-record {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .account-profile__sidebar {
  min-height: 0;
  max-height: 100%;
  overflow: auto;
}

.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .calendarorders,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .calenderview,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .calendershare,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .calenderdiv,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .demo-app,
.profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .demo-app-main {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  overflow: auto;
}

/* Orders: show tab content and scroll the table body, same as My Transcripts. */
#payment-modern.orders-page .tab-content,
#payment-modern.orders-page .tab-content > .tab-pane.active,
#payment-modern.orders-page .transcripts-page__table-card {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  overflow: visible;
}

#payment-modern.orders-page .table-responsive.table-scroll {
  flex: none;
  height: auto;
  max-height: none;
  overflow: visible;
}

#payment-modern.orders-page .table-responsive.table-scroll thead,
#payment-modern.orders-page .transcripts-page__table-card .table-responsive.table-scroll thead,
#payment-modern.orders-page .table-responsive.table-scroll tbody tr,
#payment-modern.orders-page .transcripts-page__table-card .table-responsive.table-scroll tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

#payment-modern.orders-page .table-responsive.table-scroll tbody,
#payment-modern.orders-page .transcripts-page__table-card .table-responsive.table-scroll tbody {
  display: block;
  height: calc(100vh - 32vh);
  min-height: 0;
  max-height: calc(100vh - 32vh);
  overflow-y: auto;
  overflow-x: hidden;
}

@supports (height: 100dvh) {
  #payment-modern.orders-page .table-responsive.table-scroll tbody,
  #payment-modern.orders-page .transcripts-page__table-card .table-responsive.table-scroll tbody {
    min-height: calc(100dvh - 32vh);
    max-height: calc(100dvh - 37vh);
  }
}

#payment-modern.orders-page .calendarorders {
  flex: none;
  height: auto;
  max-height: calc(100vh - 32vh);
  overflow: auto;
}

@supports (height: 100dvh) {
    
  #payment-modern.orders-page .calendarorders {
    max-height: calc(100dvh - 37vh); min-height: calc(100dvh - 32vh);
  }
}

@media (max-width: 991px) {
  .profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .account-profile__layout {
    overflow: auto;
  }

  .profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .redeem-page__panel {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) {
    --profile-page-offset: 110px;
  }

  .profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__table-card {
    overflow: hidden;
  }

  .profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__table thead,
  .profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .table-responsive.table-scroll thead {
    display: none;
  }

  .profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__table tbody,
  .profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__table tr,
  .profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .transcripts-page__table td,
  .profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .table-responsive.table-scroll tbody,
  .profile-modern-page.content-full:not(:has(.dashboard-wrapper)):not(.transcripts-page):not(:has(> .transcripts-page)) .table-responsive.table-scroll tbody tr {
    display: block;
    width: 100%;
  }
}
