@charset "UTF-8";
/* CSS Document */
:root {
    --primary-color: #4CAF50;
    --primary-hover: #45a049;
    --secondary-color: #4A90E2;
    --secondary-hover: #3A80D2;
    --accent-color: #76B041;
    --text-dark: #333;
    --text-medium: #666;
    --text-light: #999;
    --border-radius: 8px;
    --card-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
}

/* Global styles */
body .ui-card {
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    margin-bottom: 1.5rem;
    transition: box-shadow var(--transition-speed) ease;
}

body .ui-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Typography */
.osi-poppins-22 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.osi-open-sans-18 {
    font-size: 1.125rem;
    line-height: 1.6;
}

@charset "UTF-8";
/* CSS Document */
:root {
    --primary-color: #4CAF50;
    --primary-hover: #45a049;
    --secondary-color: #4A90E2;
    --secondary-hover: #3A80D2;
    --accent-color: #76B041;
    --text-dark: #333;
    --text-medium: #666;
    --text-light: #999;
    --border-radius: 8px;
    --card-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
}

/* Global styles */
body .ui-card {
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    margin-bottom: 1.5rem;
    transition: box-shadow var(--transition-speed) ease;
}

body .ui-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Typography */
.osi-poppins-22 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.osi-open-sans-18 {
    font-size: 1.125rem;
    line-height: 1.6;
}

.osi-open-sans-16 {
    font-size: 1rem;
    line-height: 1.5;
}



.osi-section-header .material-symbols-outlined {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.osi-section-header .title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Buttons */
.osi-button {
    padding: 0.625rem 1.25rem;
    background-color: var(--primary-color);
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    margin: 0.25rem 0;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
    font-weight: 500;
}

.osi-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.osi-button-secondary {
    background-color: var(--secondary-color);
}

.osi-button-secondary:hover {
    background-color: var(--secondary-hover);
}

/* Balance section */
.balance-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.balance-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.last-login {
    color: var(--text-medium);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Card sections */
.card-header-link {
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    transition: color var(--transition-speed) ease;
}

.card-header-link:hover {
    color: var(--primary-color);
}

.card-header-link h2 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.card-icon {
    font-size: 2rem !important;
    margin-right: 0.75rem;
    color: var(--secondary-color);
}

.arrow-icon {
    font-size: 1.25rem !important;
    margin-left: 0.5rem;
    transition: transform var(--transition-speed) ease;
}

.card-header-link:hover .arrow-icon {
    transform: translateX(4px);
}

.click-instruction {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

/* DataTable styling */
.ui-datatable {
    box-shadow: none !important;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.ui-datatable thead th {
    background-color: #f5f5f5 !important;
    color: var(--text-dark) !important;
    font-weight: 600 !important;
    padding: 0.75rem 1rem !important;
}

.ui-datatable tbody td {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.ui-datatable tbody tr:last-child td {
    border-bottom: none !important;
}

.ui-datatable tbody tr:hover {
    background-color: #f9f9f9 !important;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .osi-section-header .material-symbols-outlined {
        font-size: 1.75rem;
    }

    .card-icon {
        font-size: 1.75rem !important;
    }

    .balance-amount {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 768px) {
    .osi-poppins-22 {
        font-size: 1.25rem;
    }

    .osi-open-sans-18 {
        font-size: 1rem;
    }

    .osi-button {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .balance-info {
        display: block;
    }
}

@media screen and (max-width: 576px) {
    .osi-section-header .title {
        font-size: 1.125rem;
    }

    .card-header-link h2 {
        font-size: 1.125rem;
    }
}

/* News section */
.news-content {
    padding: 0.5rem 0;
}

/* Notifications styling */
.notification-item {
    padding: 0.75rem;
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
    border-left: 4px solid var(--secondary-color);
    background-color: #f9f9f9;
}

.notification-type {
    font-weight: 600;
    color: var(--text-dark);
}

.notification-date {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.notification-note {
    margin-top: 0.5rem;
}
.MarTopPerc5 {
    margin-top: 5%;
}

.MarTopPerc10 {
    margin-top: 10%;
}

.MarTopPerc20 {
    margin-top: 20%;
}

.MarTopPerc30 {
    margin-top: 30%;
}

.MarTopPerc40 {
    margin-top: 40%;
}

.MarTopPerc50 {
    margin-top: 50%;
}

.MarAuto {
    margin-left: auto;
    margin-right: auto;
}

.MarTop5 {
    margin-top: 5px;
}

.MarTop10 {
    margin-top: 10px;
}

.MarTop20 {
    margin-top: 20px;
}

.MarTop30 {
    margin-top: 30px;
}

.MarTop40 {
    margin-top: 40px;
}

.MarTop50 {
    margin-top: 50px;
}

.MarTopQuarter {
    margin-top: 25%;
}

.MarTopHalf {
    margin-top: 50%;
}

.MarBot10 {
    margin-bottom: 10px;
}

.MarBot20 {
    margin-bottom: 20px;
}

.MarRight10 {
    margin-right: 10px;
}


.MarRight20 {
    margin-right: 20px;
}

.osi-page-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}
.osi-poppins {
    font-family: "Poppins", sans-serif;
}
.osi-open-sans {
    font-family: "Open Sans", sans-serif;
}
.osi-open-sans-12 {
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
}
.osi-poppins-12 {
    font-size: 12px;
    font-family: "Poppins", sans-serif;
}
.osi-jost-12 {
    font-size: 16px;
    font-family: "Jost", sans-serif;
}

.osi-poppins-16 {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}
.osi-jost {
    font-family: "Jost", sans-serif;
}
.osi-jost-16 {
    font-size: 16px;
    font-family: "Jost", sans-serif;
}

.osi-open-sans-16 {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
}
.osi-open-sans-18 {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
}

.osi-poppins-16 {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}
.osi-poppins-18 {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}
.osi-main-body-content {
    font-size: 18px!important;
    font-family: "Open Sans", sans-serif;
    line-height: 32px;
}


.osi-jost-22 {
    font-size: 22px;
    font-family: "Jost", sans-serif;
}
.osi-open-sans-22 {
    font-size: 22px;
    font-family: "Open Sans", sans-serif;
}

.osi-margin-bot-20 {
    margin-bottom: 20px;
}

.osi-jost-32 {
    font-size: 32px;
    font-family: "Jost", sans-serif;
}
.osi-jost-32-important {
    font-size: 32px!important;
    font-family: "Jost", sans-serif;
}
.osi-open-sans-32 {
    font-size: 32px;
    font-family: "Open Sans", sans-serif;
}
.osi-poppins-32 {
    font-size: 22px;
    font-family: "Poppins", sans-serif;
}
.osi-mirage-blue {
    color: #5E81AC;
}

.OSICenter {
    display: flex;
    justify-content: center;
    align-items: center;

}
.OSIClientSectionIcon {
    font-size: 48px; /* Set the font size */
    margin-right: 10px; /* Set the right margin, assuming MarRight10 implies 10px */
    color: #5E81AC;
}


.osi-section-header .material-symbols-outlined {
    color: #4CAF50; /* Soft green for the icon */
    vertical-align: middle;
    padding-right: 10px;
    font-size: 30pt
}


.OSIClientSectionHeader {
    font-size: 26px; /* Specific font size */
    font-family: "Poppins", sans-serif; /* Specific font family */
    display: flex; /* Establishes this element as a flex container */
    align-items: center; /* Vertically align the flex items */
    justify-content: center; /* Horizontally center the content */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    font-weight: 500; /* Medium weight, heavier than normal but not bold */
    color: inherit; /* Ensure the color inherits from the parent element */
    /* Any other specific styles or resets you want to apply */
}
.OSIClientSectionHeader i.material-symbols-outlined {
    vertical-align: middle; /* Align the icon vertically in the middle */
    line-height: 1; /* Adjust line height to ensure it matches the text */
}
.OSIClientSectionHeaderSubText {
    font-size: 18px;
    font-family:"Jost", sans-serif;

}
.osi-vertical-align {
    display: flex;
    align-items: center; /* This will vertically center the children */
    justify-content: center; /* This centers the content horizontally if needed */
    text-align: center; /* Ensures text alignment stays centered */
}


/* Add any other necessary styles for osi-jost-32, TexAlCenter, osi-dark-green */

.osicenter-button {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.osi-professional-primary {
    background-color: #003366;
    color: #FFFFFF; /* White text color for better contrast */
}

/* Secondary Color - Slate Gray */
.osi-professional-secondary {
    background-color: #708090;
    color: #FFFFFF; /* White text color for better contrast */
}

/* Accent Color - Sky Blue */
.osi-professional-accent {
    background-color: #87CEEB;
    color: #003366; /* Navy Blue text color for contrast */
}

/* Background Color - Off-White */
.osi-professional-background {
    background-color: #F8F8F8;
    color: #333333; /* Dark Gray text color for readability */
}

/* Text Color - Dark Gray */
.osi-professional-text {
    color: #333333;
}


/* Paddings */
.PaddingTopPercent10 {
    padding-top: 10%;
}

/* Containers */
.Container100 {
    width: 100%;
    float: left;
}

.Container96 {
    width: 96%;
    float: left;
}

.Container90 {
    width: 90%;
    float: left;
}

.Container85 {
    width: 85%;
    float: left;
}

.Container80 {
    width: 80%;
    float: left;
}

.Container75 {
    width: 75%;
    float: left;
}

.Container70 {
    width: 70%;
    float: left;
}

.Container60 {
    width: 60%;
    float: left;
}

.Container50 {
    width: 50%;
    float: left;
}

.Container40 {
    width: 40%;
    float: left;
}

.Container33 {
    width: 33.3%;
    float: left;
}

.Container30 {
    width: 30%;
    float: left;
}

.Container25 {
    width: 25%;
    float: left;
}

.Container20 {
    width: 20%;
    float: left;
}

.Container10 {
    width: 10%;
    float: left;
}

.Container5 {
    width: 5%;
    float: left;
}

.ContainerIndent {
    display: block;
    margin: 0px auto;
}

.Container100 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 98%;
    padding: 0.1% 1%;
}

.Container96 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 98%;
    padding: 0.2% 1%;
}

.Container90 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 97.6%;
    padding: 0.2% 1.2%;
}

.Container85 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 97.4%;
    padding: 0.6% 1.3%;
}

.Container80 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 97.2%;
    padding: 0.5% 1.4%;
}

.Container75 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 97%;
    padding: 0.7% 1.5%;
}

.Container70 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 96.8%;
    padding: 0.8% 1.6%;
}

.Container60 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 96.6%;
    padding: 1% 1.7%;
}

.Container50 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 96.2%;
    padding: 1% 1.9%;
}

.Container40 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 95.6%;
    padding: 1.5% 2.2%;
}

.Container33 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 94.4%;
    padding: 1.7% 2.8%;
}

.Container30 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 94.2%;
    padding: 1.7% 2.9%;
}

.Container25 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 93.2%;
    padding: 2% 3.4%;
}

.Container20 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 92%;
    padding: 2% 4%;
}

.Container10 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 82%;
    padding: 2% 9%;
}

.Container5 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 64%;
    padding: 3% 18%;
}

/* Text Aligns */
.TexAlCenter {
    text-align: center;
}

.TextCenter {
    text-align: center;
}

.TexAlLeft {
    text-align: left;
}

.TexAlRight {
    text-align: right !important;
}

/* Padding With Transparent Border*/
.PadWithBorder1 {
    border: solid 1px transparent;
}

.PadWithBorder2 {
    border: solid 2px transparent;
}

.PadWithBorder3 {
    border: solid 3px transparent;
}

.PadWithBorder4 {
    border: solid 4px transparent;
}

.PadWithBorder5 {
    border: solid 5px transparent;
}

.PadWithBorder10 {
    border: solid 10px transparent;
}

/* Box Sizing */
.BoxSizeContent {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
}

.osi-centered-container {
    display: flex;
    align-items: center; /* This will vertically center the items */
}
.osi-centered-container-and-text {
    display: flex;
    align-items: center; /* This will vertically center the items */
    text-align: center;
}

.osi-color-block-blue {
    width: 20px;
    height: 20px;
    background-color: #007BFF; /* You can replace this with your desired color */
    display: inline-block; /* This makes sure the block stays inline and does not break to a new line */
}

.osi-color-block-red {
    width: 20px;
    height: 20px;
    background-color: #FF0000; /* You can replace this with your desired color */
    display: inline-block; /* This makes sure the block stays inline and does not break to a new line */
}

.osi-red {
    color: #FF0000; /* You can replace this with your desired color */
}
.osi-blue {
    color: #007BFF; /* You can replace this with your desired color */
}

.osi-color-block-green {
    width: 20px;
    height: 20px;
    background-color: #28A745; /* You can replace this with your desired color */
    display: inline-block; /* This makes sure the block stays inline and does not break to a new line */
}

.osi-color-block-orange {
    width: 20px;
    height: 20px;
    background-color: #FD7E14; /* You can replace this with your desired color */
    display: inline-block; /* This makes sure the block stays inline and does not break to a new line */
}

.osi-orange {
    color: #FD7E14;
}

.osi-color-block-yellow {
    width: 20px;
    height: 20px;
    background-color: #FFC107; /* You can replace this with your desired color */
    display: inline-block; /* This makes sure the block stays inline and does not break to a new line */
}

.osi-yellow {
    color: #FFC107;
}

.osi-color-block-purple {
    width: 20px;
    height: 20px;
    background-color: #6F42C1; /* You can replace this with your desired color */
    display: inline-block; /* This makes sure the block stays inline and does not break to a new line */
}

.osi-purple {
    color: #6F42C1;
}

.osi-color-block-teal {
    width: 20px;
    height: 20px;
    background-color: #20C997; /* You can replace this with your desired color */
    display: inline-block; /* This makes sure the block stays inline and does not break to a new line */
}

.osi-color-block-teal {
    color: #20C997;
}

.osi-color-block-pink {
    width: 20px;
    height: 20px;
    background-color: #E83E8C; /* You can replace this with your desired color */
    display: inline-block; /* This makes sure the block stays inline and does not break to a new line */
}

.BoxSizeBorder {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* Font Sizes */
.Fs9 {
    font-size: 9px !important;
}

.Fs10 {
    font-size: 10px !important;
}

.Fs11 {
    font-size: 11px !important;
}

.Fs12 {
    font-size: 12px !important;
}

.Fs13 {
    font-size: 13px !important;
}

.Fs14 {
    font-size: 14px !important;
}

.Fs15 {
    font-size: 15px !important;
}

.Fs16 {
    font-size: 16px !important;
}

.Fs17 {
    font-size: 17px !important;
}

.Fs18 {
    font-size: 18px !important;
}

.Fs19 {
    font-size: 19px !important;
}

.Fs20 {
    font-size: 20px !important;
}

.Fs21 {
    font-size: 21px !important;
}

.Fs22 {
    font-size: 22px !important;
}

.Fs23 {
    font-size: 23px !important;
}

.Fs24 {
    font-size: 24px !important;
}

.Fs25 {
    font-size: 25px !important;
}

.Fs26 {
    font-size: 26px !important;
}

.Fs27 {
    font-size: 27px !important;
}

.Fs28 {
    font-size: 28px !important;
}

.Fs29 {
    font-size: 29px !important;
}

.Fs30 {
    font-size: 30px !important;
}

.Fs40 {
    font-size: 40px !important;
}

.Fs50 {
    font-size: 50px !important;
}

.Fs60 {
    font-size: 60px !important;
}

.Fs100 {
    font-size: 100px !important;
}

.Fs130 {
    font-size: 130px !important;
}

/* Empty Boxes */
.EmptyBox5 {
    display: block;
    width: 100%;
    height: 5px;
    overflow: hidden;
}

.EmptyBox10 {
    display: block;
    width: 100%;
    height: 10px;
    overflow: hidden;
}

.EmptyBox20 {
    display: block;
    width: 100%;
    height: 20px;
    overflow: hidden;
}

.EmptyBox30 {
    display: block;
    width: 100%;
    height: 30px;
    overflow: hidden;
}

.EmptyBox40 {
    display: block;
    width: 100%;
    height: 40px;
    overflow: hidden;
}

.EmptyBox50 {
    display: block;
    width: 100%;
    height: 50px;
    overflow: hidden;
}

.EmptyBox60 {
    display: block;
    width: 100%;
    height: 60px;
    overflow: hidden;
}

.EmptyBox70 {
    display: block;
    width: 100%;
    height: 70px;
    overflow: hidden;
}

.EmptyBox80 {
    display: block;
    width: 100%;
    height: 80px;
    overflow: hidden;
}

.EmptyBox90 {
    display: block;
    width: 100%;
    height: 90px;
    overflow: hidden;
}

.EmptyBox100 {
    display: block;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.EmptyBox110 {
    display: block;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.EmptyBox120 {
    display: block;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.EmptyBox130 {
    display: block;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.EmptyBox140 {
    display: block;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.EmptyBox150 {
    display: block;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.redcolor-important {
    color: red !Important;
}

.bluecolor-important {
    color: #4285f4 !Important;
}

.greencolor-important {
    color: #0F9D58 !Important;
}

.absolution-color-comp-main {
    color: #303F46 !Important;
}

.absolution-color-comp-borange {
    color: #B26100 !Important;
}

.absolution-color-comp-orange {
    color: #ED9F0D !Important;
}

.absolution-color-comp-blue {
    color: #00AEFF !Important;
}

.ivoryblack {
    color: #1D2731 !Important;
}

.ivoryprussian {
    color: #0B3C5D !Important;
}

.ivoryblue {
    color: #328CC1 !Important;
}

.ivorygold {
    color: #D9B310 !Important;
}


/* Display */
.DispBlock {
    display: block;
}

.DispTable {
    display: table;
    vertical-align: middle;
}

.DispTableCell {
    display: table-cell;
    vertical-align: middle;
}

.DispNone {
    display: none;
}

.DispInlBlock {
    display: inline-block;
}

/* text colors */
.red {
    color: #D0525D;
}


.green {
    color: #5fcf80;
}

.osi-green {
    color: green;
}

.osi-dark-green {
    color: darkgreen;
}

.osi-darkblue {
    color: darkblue;
}

.orange {
    color: #F7941E;
}

.white {
    color: #F1F6F9;
}

.softgray {
    color: #C3CCD5;
}

.gray {
    color: #778D9B;
}

.black {
    color: #3B3D3F;
}

/* Background colors */
.osibackground1 {
    background: beige !important;
}

.osibackground2 {
    background-color: #276174 !important;
}

.osilink:hover {
    color: #00FF00;
}

.uncontactedcontact {
    background-color: #a90a32 !important;
    background-image: none !important;
    color: #ffffff !important;
}
.suspiciouscontact {
    background-color: #eac459 !important;
    background-image: none !important;
    color: #ffffff !important;
}

.osiinfobox {
    color: white;
    padding-top: 5px;
    padding-bottom: 5px;
}

.osi-login-body-mod {
    background-image: url("/osidashboard/jakarta.faces.resource/images/background.png.xhtml?ln=osi-layout") !Important;
    background-repeat: repeat !Important;
    background-position: center !Important;
    background-color: #C3CCD5 !Important;
}

.ShowOnMobile {
    display: none;
}

.ShowOnDesktop {
    display: inherit;
}

.FloatNoneOnMobile {
}

/* Large desktop */
@media (min-width: 960px) {
    .osicard {
        width: 500px !Important;
    }

    /*visibilities according to the platform*/
    .ShowOnMobile {
        display: none;
        opacity: 0;
    }

    .ShowOnDesktop {
        display: inherit;
        opacity: 1;
    }
}

@media (min-width: 960px) and (max-width: 1200px) {
    .osicard {
        width: 500px !Important;
    }

    /* responsive support */
    .Responsive {
        width: 33.3%;
        float: left;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .Responsive .ContainerIndent {
        width: 92% !important;
        padding: 18px 4% !important;
    }

    .Responsive50 {
    }

    .Responsive50 .ContainerIndent {
        width: 96% !important;
        padding: 18px 2% !important;
    }

    .Responsive100 {
        width: 100%;
        float: left;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .Responsive100 .ContainerIndent {
        width: 98% !important;
        padding: 18px 1% !important;
    }
}

/* Portrait tablet to landscape and desktop */
@media (min-width: 640px) and (max-width: 960px) {
    .osicard {
        width: 500px !Important;
    }

    /*visibilities according to the platform*/
    .ShowOnMobile {
        display: inherit;
        opacity: 1;
    }

    .ShowOnDesktop {
        display: none;
        opacity: 0;
    }

    .FloatNoneOnMobile {
        float: none !important;
    }

    /* responsive support */
    .Responsive {
        width: 50%;
        float: left;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .Responsive .ContainerIndent {
        width: 94% !important;
        padding: 15px 3% !important;
    }

    .Responsive50 {
        width: 100%;
        float: left;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .Responsive50 .ContainerIndent {
        width: 98% !important;
        padding: 15px 1% !important;
    }

    .Responsive100 {
        width: 100%;
        float: left;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .Responsive100 .ContainerIndent {
        width: 98% !important;
        padding: 15px 1% !important;
    }

    /* make auto of element width attribute on mobile devices with media queries */
    .WidAutoOnMobile {
        width: auto;
    }

    /* font size resetting for responsive modes */
    .Fs14 {
        font-size: 13px !important;
    }

    .Fs15 {
        font-size: 14px !important;
    }

    .Fs16 {
        font-size: 15px !important;
    }

    .Fs17 {
        font-size: 16px !important;
    }

    .Fs18 {
        font-size: 16px !important;
    }

    .Fs19 {
        font-size: 16px !important;
    }

    .Fs20 {
        font-size: 18px !important;
    }

    .Fs21 {
        font-size: 18px !important;
    }

    .Fs22 {
        font-size: 20px !important;
    }

    .Fs23 {
        font-size: 20px !important;
    }

    .Fs24 {
        font-size: 22px !important;
    }

    .Fs25 {
        font-size: 22px !important;
    }

    .Fs26 {
        font-size: 24px !important;
    }

    .Fs27 {
        font-size: 24px !important;
    }

    .Fs28 {
        font-size: 26px !important;
    }

    .Fs29 {
        font-size: 26px !important;
    }

    .Fs30 {
        font-size: 28px !important;
    }

    .Fs40 {
        font-size: 30px !important;
    }

    .Fs50 {
        font-size: 35px !important;
    }

    .Fs60 {
        font-size: 40px !important;
    }

    .Fs100 {
        font-size: 60px !important;
    }

    .Fs130 {
        font-size: 70px !important;
    }

    .osi-poppins {
        font-family: "Poppins", sans-serif;
    }

    .osi-open-sans {
        font-family: "Open Sans", sans-serif;
    }

    .osi-open-sans-12 {
        font-size: 12px;
        font-family: "Open Sans", sans-serif;
    }

    .osi-poppins-12 {
        font-size: 12px;
        font-family: "Poppins", sans-serif;
    }

    .osi-jost-12 {
        font-size: 16px;
        font-family: "Jost", sans-serif;
    }

    .osi-poppins-16 {
        font-size: 16px;
        font-family: "Poppins", sans-serif;
    }

    .osi-jost {
        font-family: "Jost", sans-serif;
    }

    .osi-jost-16 {
        font-size: 16px;
        font-family: "Jost", sans-serif;
    }

    .osi-open-sans-16 {
        font-size: 16px;
        font-family: "Open Sans", sans-serif;
    }

    .osi-poppins-16 {
        font-size: 16px;
        font-family: "Poppins", sans-serif;
    }
    .osi-greenbutton {
        padding: 10px 20px;
        background-color: #4CAF50; /* A professional shade of green */
        border: none;
        color: white;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .osi-greenbutton:hover {
        background-color: #45a049; /* A slightly darker shade of green for hover effect */
    }

    .osi-jost-22 {
        font-size: 22px;
        font-family: "Jost", sans-serif;
    }

    .osi-open-sans-22 {
        font-size: 22px;
        font-family: "Open Sans", sans-serif;
    }

    .osi-poppins-22 {
        font-size: 22px;
        font-family: "Poppins", sans-serif;
    }

    .osi-margin-bot-20 {
        margin-bottom: 20px;
    }

    .osi-jost-32 {
        font-size: 32px;
        font-family: "Jost", sans-serif;
    }

    .osi-jost-32-important {
        font-size: 32px !important;
        font-family: "Jost", sans-serif;
    }

    .osi-open-sans-32 {
        font-size: 32px;
        font-family: "Open Sans", sans-serif;
    }

    .osi-poppins-32 {
        font-size: 32px;
        font-family: "Poppins", sans-serif;
    }

    #layout-topbar {
        min-height: 66px;
        margin-bottom: 8px;
    }

    #logo {
        height: 40px;
        margin-top: 16px;
    }

    #mobile-menu-button, #mobile-menu-button-gray {
        padding: 8px 12px;
        font-size: 14px;
        margin-top: 17px;
    }
}





.osi-section-header .material-symbols-outlined {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.osi-section-header .title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Buttons */
.osi-button {
    padding: 0.625rem 1.25rem;
    background-color: var(--primary-color);
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    margin: 0.25rem 0;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
    font-weight: 500;
}

.osi-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.osi-button-secondary {
    background-color: var(--secondary-color);
}

.osi-button-secondary:hover {
    background-color: var(--secondary-hover);
}

/* Balance section */
.balance-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.balance-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.last-login {
    color: var(--text-medium);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Card sections */
.card-header-link {
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    transition: color var(--transition-speed) ease;
}

.card-header-link:hover {
    color: var(--primary-color);
}

.card-header-link h2 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.card-icon {
    font-size: 2rem !important;
    margin-right: 0.75rem;
    color: var(--secondary-color);
}

.arrow-icon {
    font-size: 1.25rem !important;
    margin-left: 0.5rem;
    transition: transform var(--transition-speed) ease;
}

.card-header-link:hover .arrow-icon {
    transform: translateX(4px);
}

.click-instruction {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

/* DataTable styling */
.ui-datatable {
    box-shadow: none !important;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.ui-datatable thead th {
    background-color: #f5f5f5 !important;
    color: var(--text-dark) !important;
    font-weight: 600 !important;
    padding: 0.75rem 1rem !important;
}

.ui-datatable tbody td {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.ui-datatable tbody tr:last-child td {
    border-bottom: none !important;
}

.ui-datatable tbody tr:hover {
    background-color: #f9f9f9 !important;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .osi-section-header .material-symbols-outlined {
        font-size: 1.75rem;
    }

    .card-icon {
        font-size: 1.75rem !important;
    }

    .balance-amount {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 768px) {
    .osi-poppins-22 {
        font-size: 1.25rem;
    }

    .osi-open-sans-18 {
        font-size: 1rem;
    }

    .osi-button {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .balance-info {
        display: block;
    }
}

@media screen and (max-width: 576px) {
    .osi-section-header .title {
        font-size: 1.125rem;
    }

    .card-header-link h2 {
        font-size: 1.125rem;
    }
}

/* News section */
.news-content {
    padding: 0.5rem 0;
}

/* Notifications styling */
.notification-item {
    padding: 0.75rem;
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
    border-left: 4px solid var(--secondary-color);
    background-color: #f9f9f9;
}

.notification-type {
    font-weight: 600;
    color: var(--text-dark);
}

.notification-date {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.notification-note {
    margin-top: 0.5rem;
}
.MarTopPerc5 {
    margin-top: 5%;
}

.MarTopPerc10 {
    margin-top: 10%;
}

.MarTopPerc20 {
    margin-top: 20%;
}

.MarTopPerc30 {
    margin-top: 30%;
}

.MarTopPerc40 {
    margin-top: 40%;
}

.MarTopPerc50 {
    margin-top: 50%;
}

.MarAuto {
    margin-left: auto;
    margin-right: auto;
}

.MarTop5 {
    margin-top: 5px;
}

.MarTop10 {
    margin-top: 10px;
}

.MarTop20 {
    margin-top: 20px;
}

.MarTop30 {
    margin-top: 30px;
}

.MarTop40 {
    margin-top: 40px;
}

.MarTop50 {
    margin-top: 50px;
}

.MarTopQuarter {
    margin-top: 25%;
}

.MarTopHalf {
    margin-top: 50%;
}

.MarBot10 {
    margin-bottom: 10px;
}

.MarBot20 {
    margin-bottom: 20px;
}

.MarRight10 {
    margin-right: 10px;
}


.MarRight20 {
    margin-right: 20px;
}

.osi-page-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}
.osi-poppins {
    font-family: "Poppins", sans-serif;
}
.osi-open-sans {
    font-family: "Open Sans", sans-serif;
}
.osi-open-sans-12 {
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
}
.osi-poppins-12 {
    font-size: 12px;
    font-family: "Poppins", sans-serif;
}
.osi-jost-12 {
    font-size: 16px;
    font-family: "Jost", sans-serif;
}

.osi-poppins-16 {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}
.osi-jost {
    font-family: "Jost", sans-serif;
}
.osi-jost-16 {
    font-size: 16px;
    font-family: "Jost", sans-serif;
}

.osi-open-sans-16 {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
}
.osi-open-sans-18 {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
}

.osi-poppins-16 {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}
.osi-poppins-18 {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}
.osi-main-body-content {
    font-size: 18px!important;
    font-family: "Open Sans", sans-serif;
    line-height: 32px;
}


.osi-jost-22 {
    font-size: 22px;
    font-family: "Jost", sans-serif;
}
.osi-open-sans-22 {
    font-size: 22px;
    font-family: "Open Sans", sans-serif;
}
.osi-poppins-22 {
    font-size: 22px;
    font-family: "Poppins", sans-serif;
}
.osi-margin-bot-20 {
    margin-bottom: 20px;
}

.osi-jost-32 {
    font-size: 32px;
    font-family: "Jost", sans-serif;
}
.osi-jost-32-important {
    font-size: 32px!important;
    font-family: "Jost", sans-serif;
}
.osi-open-sans-32 {
    font-size: 32px;
    font-family: "Open Sans", sans-serif;
}
.osi-poppins-32 {
    font-size: 22px;
    font-family: "Poppins", sans-serif;
}
.osi-mirage-blue {
   color: #5E81AC;
}

.OSICenter {
    display: flex;
    justify-content: center;
    align-items: center;

}
.OSIClientSectionIcon {
    font-size: 48px; /* Set the font size */
    margin-right: 10px; /* Set the right margin, assuming MarRight10 implies 10px */
    color: #5E81AC;
}

.osi-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
    .osi-section-header {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
}

.osi-section-header .material-symbols-outlined {
    color: #4CAF50; /* Soft green for the icon */
    vertical-align: middle;
    padding-right: 10px;
    font-size: 30pt;
}

.osi-section-header .title {
    color: #333C83; /* Deep blue for the title */
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
}

.osi-section-header .sub-section {
    color: #6E7B8B; /* Professional grey for the sub-section text */
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.OSIClientSectionHeader {
    font-size: 26px; /* Specific font size */
    font-family: "Poppins", sans-serif; /* Specific font family */
    display: flex; /* Establishes this element as a flex container */
    align-items: center; /* Vertically align the flex items */
    justify-content: center; /* Horizontally center the content */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    font-weight: 500; /* Medium weight, heavier than normal but not bold */
    color: inherit; /* Ensure the color inherits from the parent element */
    /* Any other specific styles or resets you want to apply */
}
.OSIClientSectionHeader i.material-symbols-outlined {
    vertical-align: middle; /* Align the icon vertically in the middle */
    line-height: 1; /* Adjust line height to ensure it matches the text */
}
.OSIClientSectionHeaderSubText {
    font-size: 18px;
    font-family:"Jost", sans-serif;

}
.osi-vertical-align {
    display: flex;
    align-items: center; /* This will vertically center the children */
    justify-content: center; /* This centers the content horizontally if needed */
    text-align: center; /* Ensures text alignment stays centered */
}


/* Add any other necessary styles for osi-jost-32, TexAlCenter, osi-dark-green */

.osicenter-button {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.osi-professional-primary {
    background-color: #003366;
    color: #FFFFFF; /* White text color for better contrast */
}

/* Secondary Color - Slate Gray */
.osi-professional-secondary {
    background-color: #708090;
    color: #FFFFFF; /* White text color for better contrast */
}

/* Accent Color - Sky Blue */
.osi-professional-accent {
    background-color: #87CEEB;
    color: #003366; /* Navy Blue text color for contrast */
}

/* Background Color - Off-White */
.osi-professional-background {
    background-color: #F8F8F8;
    color: #333333; /* Dark Gray text color for readability */
}

/* Text Color - Dark Gray */
.osi-professional-text {
    color: #333333;
}


/* Paddings */
.PaddingTopPercent10 {
    padding-top: 10%;
}

/* Containers */
.Container100 {
    width: 100%;
    float: left;
}

.Container96 {
    width: 96%;
    float: left;
}

.Container90 {
    width: 90%;
    float: left;
}

.Container85 {
    width: 85%;
    float: left;
}

.Container80 {
    width: 80%;
    float: left;
}

.Container75 {
    width: 75%;
    float: left;
}

.Container70 {
    width: 70%;
    float: left;
}

.Container60 {
    width: 60%;
    float: left;
}

.Container50 {
    width: 50%;
    float: left;
}

.Container40 {
    width: 40%;
    float: left;
}

.Container33 {
    width: 33.3%;
    float: left;
}

.Container30 {
    width: 30%;
    float: left;
}

.Container25 {
    width: 25%;
    float: left;
}

.Container20 {
    width: 20%;
    float: left;
}

.Container10 {
    width: 10%;
    float: left;
}

.Container5 {
    width: 5%;
    float: left;
}

.ContainerIndent {
    display: block;
    margin: 0px auto;
}

.Container100 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 98%;
    padding: 0.1% 1%;
}

.Container96 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 98%;
    padding: 0.2% 1%;
}

.Container90 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 97.6%;
    padding: 0.2% 1.2%;
}

.Container85 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 97.4%;
    padding: 0.6% 1.3%;
}

.Container80 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 97.2%;
    padding: 0.5% 1.4%;
}

.Container75 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 97%;
    padding: 0.7% 1.5%;
}

.Container70 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 96.8%;
    padding: 0.8% 1.6%;
}

.Container60 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 96.6%;
    padding: 1% 1.7%;
}

.Container50 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 96.2%;
    padding: 1% 1.9%;
}

.Container40 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 95.6%;
    padding: 1.5% 2.2%;
}

.Container33 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 94.4%;
    padding: 1.7% 2.8%;
}

.Container30 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 94.2%;
    padding: 1.7% 2.9%;
}

.Container25 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 93.2%;
    padding: 2% 3.4%;
}

.Container20 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 92%;
    padding: 2% 4%;
}

.Container10 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 82%;
    padding: 2% 9%;
}

.Container5 .ContainerIndent {
    display: block;
    margin: 0px auto;
    width: 64%;
    padding: 3% 18%;
}

/* Text Aligns */
.TexAlCenter {
    text-align: center;
}

.TextCenter {
    text-align: center;
}

.TexAlLeft {
    text-align: left;
}

.TexAlRight {
    text-align: right !important;
}

/* Padding With Transparent Border*/
.PadWithBorder1 {
    border: solid 1px transparent;
}

.PadWithBorder2 {
    border: solid 2px transparent;
}

.PadWithBorder3 {
    border: solid 3px transparent;
}

.PadWithBorder4 {
    border: solid 4px transparent;
}

.PadWithBorder5 {
    border: solid 5px transparent;
}

.PadWithBorder10 {
    border: solid 10px transparent;
}

/* Box Sizing */
.BoxSizeContent {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
}

.osi-centered-container {
    display: flex;
    align-items: center; /* This will vertically center the items */
}
.osi-centered-container-and-text {
    display: flex;
    align-items: center; /* This will vertically center the items */
    text-align: center;
}

.osi-color-block-blue {
    width: 20px;
    height: 20px;
    background-color: #007BFF; /* You can replace this with your desired color */
    display: inline-block; /* This makes sure the block stays inline and does not break to a new line */
}

.osi-color-block-red {
    width: 20px;
    height: 20px;
    background-color: #FF0000; /* You can replace this with your desired color */
    display: inline-block; /* This makes sure the block stays inline and does not break to a new line */
}

.osi-red {
    color: #FF0000; /* You can replace this with your desired color */
}
.osi-blue {
    color: #007BFF; /* You can replace this with your desired color */
}

.osi-color-block-green {
    width: 20px;
    height: 20px;
    background-color: #28A745; /* You can replace this with your desired color */
    display: inline-block; /* This makes sure the block stays inline and does not break to a new line */
}

.osi-color-block-orange {
    width: 20px;
    height: 20px;
    background-color: #FD7E14; /* You can replace this with your desired color */
    display: inline-block; /* This makes sure the block stays inline and does not break to a new line */
}

.osi-orange {
    color: #FD7E14;
}

.osi-color-block-yellow {
    width: 20px;
    height: 20px;
    background-color: #FFC107; /* You can replace this with your desired color */
    display: inline-block; /* This makes sure the block stays inline and does not break to a new line */
}

.osi-yellow {
    color: #FFC107;
}

.osi-color-block-purple {
    width: 20px;
    height: 20px;
    background-color: #6F42C1; /* You can replace this with your desired color */
    display: inline-block; /* This makes sure the block stays inline and does not break to a new line */
}

.osi-purple {
    color: #6F42C1;
}

.osi-color-block-teal {
    width: 20px;
    height: 20px;
    background-color: #20C997; /* You can replace this with your desired color */
    display: inline-block; /* This makes sure the block stays inline and does not break to a new line */
}

.osi-color-block-teal {
    color: #20C997;
}

.osi-color-block-pink {
    width: 20px;
    height: 20px;
    background-color: #E83E8C; /* You can replace this with your desired color */
    display: inline-block; /* This makes sure the block stays inline and does not break to a new line */
}

.BoxSizeBorder {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* Font Sizes */
.Fs9 {
    font-size: 9px !important;
}

.Fs10 {
    font-size: 10px !important;
}

.Fs11 {
    font-size: 11px !important;
}

.Fs12 {
    font-size: 12px !important;
}

.Fs13 {
    font-size: 13px !important;
}

.Fs14 {
    font-size: 14px !important;
}

.Fs15 {
    font-size: 15px !important;
}

.Fs16 {
    font-size: 16px !important;
}

.Fs17 {
    font-size: 17px !important;
}

.Fs18 {
    font-size: 18px !important;
}

.Fs19 {
    font-size: 19px !important;
}

.Fs20 {
    font-size: 20px !important;
}

.Fs21 {
    font-size: 21px !important;
}

.Fs22 {
    font-size: 22px !important;
}

.Fs23 {
    font-size: 23px !important;
}

.Fs24 {
    font-size: 24px !important;
}

.Fs25 {
    font-size: 25px !important;
}

.Fs26 {
    font-size: 26px !important;
}

.Fs27 {
    font-size: 27px !important;
}

.Fs28 {
    font-size: 28px !important;
}

.Fs29 {
    font-size: 29px !important;
}

.Fs30 {
    font-size: 30px !important;
}

.Fs40 {
    font-size: 40px !important;
}

.Fs50 {
    font-size: 50px !important;
}

.Fs60 {
    font-size: 60px !important;
}

.Fs100 {
    font-size: 100px !important;
}

.Fs130 {
    font-size: 130px !important;
}

/* Empty Boxes */
.EmptyBox5 {
    display: block;
    width: 100%;
    height: 5px;
    overflow: hidden;
}

.EmptyBox10 {
    display: block;
    width: 100%;
    height: 10px;
    overflow: hidden;
}

.EmptyBox20 {
    display: block;
    width: 100%;
    height: 20px;
    overflow: hidden;
}

.EmptyBox30 {
    display: block;
    width: 100%;
    height: 30px;
    overflow: hidden;
}

.EmptyBox40 {
    display: block;
    width: 100%;
    height: 40px;
    overflow: hidden;
}

.EmptyBox50 {
    display: block;
    width: 100%;
    height: 50px;
    overflow: hidden;
}

.EmptyBox60 {
    display: block;
    width: 100%;
    height: 60px;
    overflow: hidden;
}

.EmptyBox70 {
    display: block;
    width: 100%;
    height: 70px;
    overflow: hidden;
}

.EmptyBox80 {
    display: block;
    width: 100%;
    height: 80px;
    overflow: hidden;
}

.EmptyBox90 {
    display: block;
    width: 100%;
    height: 90px;
    overflow: hidden;
}

.EmptyBox100 {
    display: block;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.EmptyBox110 {
    display: block;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.EmptyBox120 {
    display: block;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.EmptyBox130 {
    display: block;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.EmptyBox140 {
    display: block;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.EmptyBox150 {
    display: block;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.redcolor-important {
    color: red !Important;
}

.bluecolor-important {
    color: #4285f4 !Important;
}

.greencolor-important {
    color: #0F9D58 !Important;
}

.absolution-color-comp-main {
    color: #303F46 !Important;
}

.absolution-color-comp-borange {
    color: #B26100 !Important;
}

.absolution-color-comp-orange {
    color: #ED9F0D !Important;
}

.absolution-color-comp-blue {
    color: #00AEFF !Important;
}

.ivoryblack {
    color: #1D2731 !Important;
}

.ivoryprussian {
    color: #0B3C5D !Important;
}

.ivoryblue {
    color: #328CC1 !Important;
}

.ivorygold {
    color: #D9B310 !Important;
}


/* Display */
.DispBlock {
    display: block;
}

.DispTable {
    display: table;
    vertical-align: middle;
}

.DispTableCell {
    display: table-cell;
    vertical-align: middle;
}

.DispNone {
    display: none;
}

.DispInlBlock {
    display: inline-block;
}

/* text colors */
.red {
    color: #D0525D;
}


.green {
    color: #5fcf80;
}

.osi-green {
    color: green;
}

.osi-dark-green {
    color: darkgreen;
}

.osi-darkblue {
    color: darkblue;
}

.orange {
    color: #F7941E;
}

.white {
    color: #F1F6F9;
}

.softgray {
    color: #C3CCD5;
}

.gray {
    color: #778D9B;
}

.black {
    color: #3B3D3F;
}

/* Background colors */
.osibackground1 {
    background: beige !important;
}

.osibackground2 {
    background-color: #276174 !important;
}

.osilink:hover {
    color: #00FF00;
}

.uncontactedcontact {
    background-color: #a90a32 !important;
    background-image: none !important;
    color: #ffffff !important;
}
.suspiciouscontact {
    background-color: #eac459 !important;
    background-image: none !important;
    color: #ffffff !important;
}

.osiinfobox {
    color: white;
    padding-top: 5px;
    padding-bottom: 5px;
}

.osi-login-body-mod {
    background-image: url("/osidashboard/jakarta.faces.resource/images/background.png.xhtml?ln=osi-layout") !Important;
    background-repeat: repeat !Important;
    background-position: center !Important;
    background-color: #C3CCD5 !Important;
}

.ShowOnMobile {
    display: none;
}

.ShowOnDesktop {
    display: inherit;
}

.FloatNoneOnMobile {
}

/* Large desktop */
@media (min-width: 960px) {
    .osicard {
        width: 500px !Important;
    }

    /*visibilities according to the platform*/
    .ShowOnMobile {
        display: none;
        opacity: 0;
    }

    .ShowOnDesktop {
        display: inherit;
        opacity: 1;
    }
}

@media (min-width: 960px) and (max-width: 1200px) {
    .osicard {
        width: 500px !Important;
    }

    /* responsive support */
    .Responsive {
        width: 33.3%;
        float: left;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .Responsive .ContainerIndent {
        width: 92% !important;
        padding: 18px 4% !important;
    }

    .Responsive50 {
    }

    .Responsive50 .ContainerIndent {
        width: 96% !important;
        padding: 18px 2% !important;
    }

    .Responsive100 {
        width: 100%;
        float: left;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .Responsive100 .ContainerIndent {
        width: 98% !important;
        padding: 18px 1% !important;
    }
}

/* Portrait tablet to landscape and desktop */
@media (min-width: 640px) and (max-width: 960px) {
    .osicard {
        width: 500px !Important;
    }

    /*visibilities according to the platform*/
    .ShowOnMobile {
        display: inherit;
        opacity: 1;
    }

    .ShowOnDesktop {
        display: none;
        opacity: 0;
    }

    .FloatNoneOnMobile {
        float: none !important;
    }

    /* responsive support */
    .Responsive {
        width: 50%;
        float: left;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .Responsive .ContainerIndent {
        width: 94% !important;
        padding: 15px 3% !important;
    }

    .Responsive50 {
        width: 100%;
        float: left;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .Responsive50 .ContainerIndent {
        width: 98% !important;
        padding: 15px 1% !important;
    }

    .Responsive100 {
        width: 100%;
        float: left;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .Responsive100 .ContainerIndent {
        width: 98% !important;
        padding: 15px 1% !important;
    }

    /* make auto of element width attribute on mobile devices with media queries */
    .WidAutoOnMobile {
        width: auto;
    }

    /* font size resetting for responsive modes */
    .Fs14 {
        font-size: 13px !important;
    }

    .Fs15 {
        font-size: 14px !important;
    }

    .Fs16 {
        font-size: 15px !important;
    }

    .Fs17 {
        font-size: 16px !important;
    }

    .Fs18 {
        font-size: 16px !important;
    }

    .Fs19 {
        font-size: 16px !important;
    }

    .Fs20 {
        font-size: 18px !important;
    }

    .Fs21 {
        font-size: 18px !important;
    }

    .Fs22 {
        font-size: 20px !important;
    }

    .Fs23 {
        font-size: 20px !important;
    }

    .Fs24 {
        font-size: 22px !important;
    }

    .Fs25 {
        font-size: 22px !important;
    }

    .Fs26 {
        font-size: 24px !important;
    }

    .Fs27 {
        font-size: 24px !important;
    }

    .Fs28 {
        font-size: 26px !important;
    }

    .Fs29 {
        font-size: 26px !important;
    }

    .Fs30 {
        font-size: 28px !important;
    }

    .Fs40 {
        font-size: 30px !important;
    }

    .Fs50 {
        font-size: 35px !important;
    }

    .Fs60 {
        font-size: 40px !important;
    }

    .Fs100 {
        font-size: 60px !important;
    }

    .Fs130 {
        font-size: 70px !important;
    }

    .osi-poppins {
        font-family: "Poppins", sans-serif;
    }

    .osi-open-sans {
        font-family: "Open Sans", sans-serif;
    }

    .osi-open-sans-12 {
        font-size: 12px;
        font-family: "Open Sans", sans-serif;
    }

    .osi-poppins-12 {
        font-size: 12px;
        font-family: "Poppins", sans-serif;
    }

    .osi-jost-12 {
        font-size: 16px;
        font-family: "Jost", sans-serif;
    }

    .osi-poppins-16 {
        font-size: 16px;
        font-family: "Poppins", sans-serif;
    }

    .osi-jost {
        font-family: "Jost", sans-serif;
    }

    .osi-jost-16 {
        font-size: 16px;
        font-family: "Jost", sans-serif;
    }

    .osi-open-sans-16 {
        font-size: 16px;
        font-family: "Open Sans", sans-serif;
    }

    .osi-poppins-16 {
        font-size: 16px;
        font-family: "Poppins", sans-serif;
    }
    .osi-greenbutton {
        padding: 10px 20px;
        background-color: #4CAF50; /* A professional shade of green */
        border: none;
        color: white;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .osi-greenbutton:hover {
        background-color: #45a049; /* A slightly darker shade of green for hover effect */
    }

    .osi-jost-22 {
        font-size: 22px;
        font-family: "Jost", sans-serif;
    }

    .osi-open-sans-22 {
        font-size: 22px;
        font-family: "Open Sans", sans-serif;
    }

    .osi-poppins-22 {
        font-size: 22px;
        font-family: "Poppins", sans-serif;
    }

    .osi-margin-bot-20 {
        margin-bottom: 20px;
    }

    .osi-jost-32 {
        font-size: 32px;
        font-family: "Jost", sans-serif;
    }

    .osi-jost-32-important {
        font-size: 32px !important;
        font-family: "Jost", sans-serif;
    }

    .osi-open-sans-32 {
        font-size: 32px;
        font-family: "Open Sans", sans-serif;
    }

    .osi-poppins-32 {
        font-size: 32px;
        font-family: "Poppins", sans-serif;
    }

    #layout-topbar {
        min-height: 66px;
        margin-bottom: 8px;
    }

    #logo {
        height: 40px;
        margin-top: 16px;
    }

    #mobile-menu-button, #mobile-menu-button-gray {
        padding: 8px 12px;
        font-size: 14px;
        margin-top: 17px;
    }
}


/* Remove underlines from PrimeFaces menu items */
.ui-menu a,
.ui-menu .ui-menuitem-link,
.ui-menu .ui-submenu-link,
.ui-menubar a,
.ui-menubar .ui-menuitem-link,
.ui-menubar .ui-submenu-link,
.osi-admin-sidebar .ui-menu a,
.osi-admin-sidebar .ui-menu .ui-menuitem-link,
.osi-admin-sidebar .ui-menu .ui-submenu-link,
.osi-admin-sidebar .ui-menubar a,
.osi-admin-sidebar .ui-menubar .ui-menuitem-link,
.osi-admin-sidebar .ui-menubar .ui-submenu-link,
.osi-admin-sidebar a,
.osi-admin-sidebar .ui-menuitem-text,
.osi-admin-sidebar .ui-submenu-link,
.osi-admin-sidebar .ui-menuitem-icon,
.osi-admin-sidebar .ui-submenu-icon {
    text-decoration: none !important;
}

.ui-menu a:hover,
.ui-menu .ui-menuitem-link:hover,
.ui-menu .ui-submenu-link:hover,
.ui-menubar a:hover,
.ui-menubar .ui-menuitem-link:hover,
.ui-menubar .ui-submenu-link:hover,
.osi-admin-sidebar .ui-menu a:hover,
.osi-admin-sidebar .ui-menu .ui-menuitem-link:hover,
.osi-admin-sidebar .ui-menu .ui-submenu-link:hover,
.osi-admin-sidebar .ui-menubar a:hover,
.osi-admin-sidebar .ui-menubar .ui-menuitem-link:hover,
.osi-admin-sidebar .ui-menubar .ui-submenu-link:hover,
.osi-admin-sidebar a:hover,
.osi-admin-sidebar .ui-menuitem-text:hover,
.osi-admin-sidebar .ui-submenu-link:hover {
    text-decoration: none !important;
}

/* Modern Dashboard Cards - Improved Colors, Text Sizes, and Contrast */
.modern-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
    padding: 2rem;
    margin-bottom: 1rem;
}

.modern-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(74, 144, 226, 0.4);
}

.modern-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 8px;
}

.modern-icon {
    font-size: 3rem !important;
    color: #1e3a8a;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modern-icon:hover {
    color: #1e40af;
    transform: scale(1.15);
}

.modern-text {
    padding: 0.75rem;
}

.modern-title {
    font-size: 2.0rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.modern-subtitle {
    font-size: 1.5rem!Important;
    color: #374151!Important;
    line-height: 1.5;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
}

.modern-status {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
}

.modern-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #166534;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Modern Deposits Styling */
.modern-deposits {
    margin-top: 0.75rem;
}

.modern-location-box {
    padding: 0.5rem;
}

.modern-location-title {
    margin: 0;
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

.modern-amount {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0.25rem 0;
    font-family: 'Poppins', sans-serif;
}

.modern-monthly {
    font-size: 0.75rem;
    color: #6c757d;
    font-family: 'Open Sans', sans-serif;
}

.modern-total-summary {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    padding-top: 0.5rem;
    font-family: 'Open Sans', sans-serif;
}

/* Modern Stats Card - Improved Colors and Contrast */
.modern-stats-card {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.modern-stats-container {
    padding: 1.5rem;
}

.modern-stats-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #4f46e5;
    background: rgba(99, 102, 241, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 0 -0.5rem 1.25rem -0.5rem;
}

.modern-stats-icon {
    font-size: 2.25rem !important;
    color: #4338ca;
    margin-right: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modern-stats-table {
    margin-bottom: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modern-stats-header-row {
    background: linear-gradient(135deg, #4338ca 0%, #3730a3 100%);
}

.modern-stats-th {
    padding: 1rem 0.75rem;
    font-weight: 700;
    color: white;
    border: none;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.modern-stats-row {
    transition: background-color 0.2s ease;
    background-color: rgba(255, 255, 255, 0.8);
}

.modern-stats-row:hover {
    background-color: rgba(99, 102, 241, 0.1);
}

.modern-stats-td {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #d1d5db;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    color: #374151;
    font-weight: 500;
}

.modern-grid .ui-panelgrid-cell {
    padding: 0.75rem !important;
    border: none !important;
}

.modern-currency {
    font-weight: 700;
    color: #059669;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

.modern-percentage {
    font-weight: 700;
    color: #dc2626;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

/* Modern Deposits Table - Improved Colors and Contrast */
.modern-deposits-table {
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modern-deposits-header-row {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.modern-deposits-th {
    padding: 0.875rem 0.75rem;
    font-weight: 700;
    color: white;
    border: none;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.modern-deposits-row {
    transition: background-color 0.2s ease;
    background-color: rgba(255, 255, 255, 0.9);
}

.modern-deposits-row:hover {
    background-color: rgba(5, 150, 105, 0.1);
}

.modern-deposits-td {
    padding: 0.875rem 0.75rem;
    border-bottom: 1px solid #d1d5db;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    color: #374151;
    font-weight: 500;
}

.modern-deposits-total-row {
    background-color: rgba(5, 150, 105, 0.1);
    border-top: 3px solid #059669;
}

.modern-deposits-td-total {
    padding: 0.875rem 0.75rem;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    color: #1f2937;
    font-weight: 700;
}

.modern-amount-compact {
    font-weight: 700;
    color: #047857;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.modern-monthly-compact {
    color: #374151;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
}

.modern-total-summary-compact {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #374151;
    text-align: center;
    border-top: 2px solid #d1d5db;
    padding-top: 0.75rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

/* =============================================
   OSI Modern Login Page
   ============================================= */

.osi-login-page {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.osi-login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.osi-login-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 420px;
    padding: 48px 40px 40px;
    position: relative;
    overflow: hidden;
}

.osi-login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #6366f1, #8b5cf6);
}

.osi-login-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.osi-login-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.osi-login-logo img {
    width: 48px;
    height: auto;
}

.osi-login-card-header h1 {
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.osi-login-card-header p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

.osi-login-messages {
    margin-bottom: 16px;
}

.osi-login-messages .ui-messages-warn {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 12px 16px;
    color: #92400e;
    font-size: 13px;
}

.osi-login-messages .ui-messages-error {
    background: #fee2e2;
    border: 1px solid #ef4444;
    border-radius: 8px;
    padding: 12px 16px;
    color: #991b1b;
    font-size: 13px;
}

.osi-login-field {
    margin-bottom: 20px;
}

.osi-login-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.osi-login-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.osi-login-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #94a3b8;
    z-index: 1;
    pointer-events: none;
}

.osi-login-input-group input,
.osi-login-input-group .ui-inputtext {
    width: 100%;
    padding: 12px 16px 12px 46px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.osi-login-input-group input::placeholder,
.osi-login-input-group .ui-inputtext::placeholder {
    color: #94a3b8;
}

.osi-login-input-group input:focus,
.osi-login-input-group .ui-inputtext:focus {
    background: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.osi-login-input-group input:hover:not(:focus),
.osi-login-input-group .ui-inputtext:hover:not(:focus) {
    border-color: #cbd5e1;
}

.osi-login-input-lowercase input,
input.osi-login-input-lowercase {
    text-transform: lowercase;
}

.osi-login-actions {
    margin-top: 28px;
}

.osi-login-btn,
.ui-button.osi-login-btn {
    width: 100%;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #ffffff !important;
    background: linear-gradient(135deg, #3b82f6 0%, #4f46e5 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.osi-login-btn .ui-button-text {
    font-weight: 600;
}

.osi-login-btn .ui-icon {
    margin-right: 8px;
}

.osi-login-btn:hover,
.ui-button.osi-login-btn:hover,
.osi-login-btn.ui-state-hover,
.ui-button.osi-login-btn.ui-state-hover {
    background: linear-gradient(135deg, #2563eb 0%, #4338ca 100%);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

.osi-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.osi-login-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.osi-login-btn-forgot,
.ui-button.osi-login-btn-forgot {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s ease;
    box-shadow: none;
}

.osi-login-btn-forgot .ui-button-text {
    text-decoration: none;
    font-weight: 400;
}

.osi-login-btn-forgot:hover,
.ui-button.osi-login-btn-forgot:hover,
.osi-login-btn-forgot.ui-state-hover,
.ui-button.osi-login-btn-forgot.ui-state-hover {
    color: #3b82f6;
    background: transparent;
    box-shadow: none;
}

.osi-login-brand-strip {
    margin-top: 32px;
    text-align: center;
}

.osi-login-brand-strip span {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .osi-login-wrapper {
        padding: 16px;
    }

    .osi-login-card {
        padding: 36px 24px 32px;
        border-radius: 12px;
    }

    .osi-login-card-header h1 {
        font-size: 20px;
    }

    .osi-login-card-header p {
        font-size: 13px;
    }

    .osi-login-input-group input,
    .osi-login-input-group .ui-inputtext {
        padding: 11px 14px 11px 42px;
        font-size: 16px;
    }

    .osi-login-btn,
    .ui-button.osi-login-btn {
        padding: 12px 20px;
    }
}

/* ===================================================================
   VIEW CLIENT PAGE STYLES (osi-vc-*)
   =================================================================== */

/* Client Header */
.osi-vc-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    padding: 18px 24px;
    margin-bottom: 16px;
}

.osi-vc-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.osi-vc-header-icon {
    font-size: 36px;
    color: var(--secondary-color, #4A90E2);
    background: #eef4fb;
    border-radius: 50%;
    padding: 10px;
}

.osi-vc-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

.osi-vc-subtitle {
    font-size: 0.82rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.osi-vc-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #bbb;
}

.osi-vc-header-right {
    font-size: 0.85rem;
    color: #555;
    width: 100%;
}

/* Warning */
.osi-vc-warning {
    display: block;
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 10px 16px;
    margin-bottom: 14px;
    font-size: 0.85rem;
}

/* Cards */
.osi-vc-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    padding: 20px 24px;
    margin-bottom: 16px;
}

.osi-vc-card:nth-of-type(even) {
    background: #f9f9f9;
}

.osi-vc-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.osi-vc-card-title .material-symbols-outlined {
    font-size: 20px;
    color: var(--secondary-color, #4A90E2);
}

/* Form Grid */
.osi-vc-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px 18px;
    align-items: start;
}

.osi-vc-form-grid label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.osi-vc-field {
    min-width: 0;
}

.osi-vc-span-2 {
    grid-column: span 2;
}

.osi-vc-span-4 {
    grid-column: span 4;
}

.osi-vc-span-full {
    grid-column: 1 / -1;
}

.osi-vc-field-half {
    min-width: 0;
}

/* Input styling */
.osi-vc-input-full,
.osi-vc-input-full.ui-inputfield {
    width: 100%;
    box-sizing: border-box;
}

.osi-vc-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.osi-vc-input-row .osi-vc-input-full {
    flex: 1;
}

/* Buttons */
.osi-vc-btn-sm,
.ui-button.osi-vc-btn-sm {
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 5px;
    white-space: nowrap;
    background: var(--secondary-color, #4A90E2);
    color: #fff;
    border: none;
    cursor: pointer;
}

.osi-vc-btn-sm:hover,
.ui-button.osi-vc-btn-sm:hover {
    background: var(--secondary-hover, #3A80D2);
}

.osi-vc-btn-primary,
.ui-button.osi-vc-btn-primary {
    background: var(--secondary-color, #4A90E2);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.osi-vc-btn-primary:hover,
.ui-button.osi-vc-btn-primary:hover {
    background: var(--secondary-hover, #3A80D2);
}

.osi-vc-btn-outline,
.ui-button.osi-vc-btn-outline {
    background: transparent;
    color: var(--secondary-color, #4A90E2);
    border: 1px solid var(--secondary-color, #4A90E2);
    border-radius: 6px;
    padding: 7px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.osi-vc-btn-outline:hover,
.ui-button.osi-vc-btn-outline:hover {
    background: var(--secondary-color, #4A90E2);
    color: #fff;
}

.osi-vc-btn-outline .material-symbols-outlined {
    font-size: 16px;
}

.osi-vc-btn-block {
    display: block;
    margin-bottom: 20px;
}

/* Badge */
.osi-vc-badge-danger {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 4px;
}

/* Info icon */
.osi-vc-info-icon {
    font-size: 14px;
    color: #aaa;
    vertical-align: middle;
    cursor: help;
}

/* Service Toggles */
.osi-vc-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.osi-vc-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #444;
}

.osi-vc-toggle label {
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.82rem;
    font-weight: 400;
    color: #444;
    margin-bottom: 0;
}

/* Quick Actions */
.osi-vc-quick-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.osi-vc-quick-actions .material-symbols-outlined {
    font-size: 16px;
}

/* Accordion */
.osi-vc-accordion.ui-accordion {
    margin-top: 8px;
}

.osi-vc-accordion .ui-accordion-header {
    border-radius: 8px;
    margin-bottom: 4px;
    border: 1px solid #e8e8e8;
    background: #fafbfc;
    transition: background 0.2s;
}

.osi-vc-accordion .ui-accordion-header a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    padding: 12px 18px;
}

.osi-vc-accordion .ui-accordion-header.ui-state-active {
    background: #eef4fb;
    border-color: var(--secondary-color, #4A90E2);
}

.osi-vc-accordion .ui-accordion-content {
    border: 1px solid #e8e8e8;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 18px 20px;
}

/* Card Inner (accordion content) */
.osi-vc-card-inner {
    background: transparent;
}

/* Divider */
.osi-vc-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 16px 0;
}

/* Readonly label */
.osi-vc-readonly {
    display: inline-block;
    padding: 6px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #555;
    min-width: 60px;
}

/* Bold label */
.osi-vc-label-bold {
    font-weight: 600;
    color: #333;
}

/* DID List */
.osi-vc-did-list {
    border: none;
}

.osi-vc-did-list .ui-panelgrid-cell {
    border: none;
    padding: 0;
}

.osi-vc-did-link,
a.osi-vc-did-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary-color, #4A90E2);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 0;
    transition: color 0.2s;
}

.osi-vc-did-link:hover {
    color: var(--secondary-hover, #3A80D2);
}

.osi-vc-did-link .material-symbols-outlined {
    font-size: 16px;
}

/* Empty text */
.osi-vc-empty-text {
    font-size: 0.82rem;
    color: #999;
    font-style: italic;
}

/* 2-column form layout */
.osi-vc-form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.osi-vc-form-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.osi-vc-section-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.osi-vc-section-label .material-symbols-outlined {
    font-size: 18px;
    color: var(--secondary-color, #4A90E2);
}

.osi-vc-form-section label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Action row */
.osi-vc-action-row {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

/* Memo textarea */
.osi-vc-memo-textarea,
textarea.osi-vc-memo-textarea {
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    resize: vertical;
}

.osi-vc-memo-textarea:focus {
    outline: none;
    border-color: var(--secondary-color, #4A90E2);
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.15);
}

/* Help text */
.osi-vc-help-text {
    display: block;
    font-size: 0.72rem;
    color: #999;
    margin-top: 3px;
}

/* Dialog */
.osi-vc-dialog.ui-dialog {
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.osi-vc-dialog .ui-dialog-titlebar {
    border-radius: 10px 10px 0 0;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
}

.osi-vc-dialog .ui-dialog-content {
    padding: 20px;
}

.osi-vc-dialog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.osi-vc-dialog-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.osi-vc-dialog-field label {
    font-size: 0.78rem;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.osi-vc-dialog-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    justify-content: flex-end;
}

.osi-vc-dialog-note {
    font-size: 0.82rem;
    color: #777;
    margin: 0 0 14px 0;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid var(--secondary-color, #4A90E2);
}

/* Mail legend */
.osi-vc-mail-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #eee;
    font-size: 0.78rem;
    color: #666;
}

.osi-vc-mail-legend > div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.osi-vc-mail-legend .material-symbols-outlined {
    font-size: 16px;
}

/* Manager panel */
.osi-vc-manager-panel {
    margin-top: 14px;
    font-size: 0.82rem;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
}

.osi-vc-manager-panel .ui-panelgrid-header {
    background: #f8f9fa;
    font-weight: 600;
    font-size: 0.8rem;
}

/* ===================================================================
   VIEW CONTACT PAGE STYLES (osi-contact-*)
   =================================================================== */
:root {
    --osi-contact-primary: #1f5fcc;
    --osi-contact-primary-soft: #ecf3ff;
    --osi-contact-text: #1c2f4f;
    --osi-contact-muted: #5f7192;
    --osi-contact-border: #d8e3f3;
    --osi-contact-surface: #ffffff;
    --osi-contact-surface-alt: #f7faff;
    --osi-contact-success: #1b8f4a;
    --osi-contact-shadow: 0 14px 32px rgba(17, 43, 85, 0.08);
}

.osi-contact-page {
    background: linear-gradient(180deg, #f5f9ff 0%, #f8fbff 100%);
    border-radius: 16px;
    padding: 1rem;
}

.osi-contact-header {
    background: var(--osi-contact-surface);
    border: 1px solid var(--osi-contact-border);
    border-radius: 14px;
    box-shadow: var(--osi-contact-shadow);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.osi-contact-header-main {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.osi-contact-header .material-symbols-outlined {
    font-size: 1.75rem;
    color: var(--osi-contact-primary);
    background: var(--osi-contact-primary-soft);
    border-radius: 999px;
    padding: 0.5rem;
}

.osi-contact-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--osi-contact-text);
    line-height: 1.2;
    word-break: break-word;
}

.osi-contact-header-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.osi-contact-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d6e4fb;
    background: #f7fbff;
    color: #355580;
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
}

.osi-contact-chip.is-success {
    border-color: #bde7c7;
    background: #ebfff1;
    color: #217a43;
}

/* ─── Modern Toolbar ─── */
.osi-contact-toolbar {
    padding: 0.5rem 0.75rem;
    background: var(--osi-contact-surface);
    border: 1px solid var(--osi-contact-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.osi-toolbar-group {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.osi-toolbar-divider {
    width: 1px;
    height: 24px;
    background: var(--osi-contact-border);
    margin: 0 0.25rem;
}

.osi-toolbar-spacer {
    flex: 1;
    min-width: 0.5rem;
}

/* Base button style */
.osi-contact-toolbar .ui-button,
.osi-contact-toolbar .ui-splitbutton .ui-button {
    border: none !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 0.8125rem !important;
    padding: 0.4rem 0.75rem !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: all 0.15s ease;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.osi-contact-toolbar .material-symbols-outlined {
    font-size: 17px;
    order: -1;
}

.osi-toolbar-label {
    order: 1;
}

/* Hide PrimeFaces default button text when we use custom layout */
.osi-contact-toolbar .osi-toolbar-btn .ui-button-text {
    display: none !important;
}

/* Ghost / subtle button */
.ui-button.osi-toolbar-btn-ghost {
    background: transparent !important;
    color: #475569 !important;
}
.ui-button.osi-toolbar-btn-ghost:hover {
    background: #f1f5f9 !important;
    color: #1e293b !important;
}

/* Primary */
.ui-button.osi-toolbar-btn-primary {
    background: #2563eb !important;
    color: #fff !important;
}
.ui-button.osi-toolbar-btn-primary:hover {
    background: #1d4ed8 !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

/* Teal */
.ui-button.osi-toolbar-btn-teal {
    background: #0d9488 !important;
    color: #fff !important;
}
.ui-button.osi-toolbar-btn-teal:hover {
    background: #0f766e !important;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.35);
}

/* Amber */
.ui-button.osi-toolbar-btn-amber {
    background: #d97706 !important;
    color: #fff !important;
}
.ui-button.osi-toolbar-btn-amber:hover {
    background: #b45309 !important;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.35);
}

/* Danger */
.ui-button.osi-toolbar-btn-danger {
    background: transparent !important;
    color: #dc2626 !important;
}
.ui-button.osi-toolbar-btn-danger:hover {
    background: #fef2f2 !important;
    color: #b91c1c !important;
}

/* Violet */
.ui-button.osi-toolbar-btn-violet {
    background: #7c3aed !important;
    color: #fff !important;
}
.ui-button.osi-toolbar-btn-violet:hover {
    background: #6d28d9 !important;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.35);
}

/* Split button (Send Email) */
.osi-toolbar-split.ui-splitbutton .ui-button {
    background: #15803d !important;
    color: #fff !important;
}
.osi-toolbar-split.ui-splitbutton .ui-button:hover {
    background: #166534 !important;
    box-shadow: 0 2px 8px rgba(21, 128, 61, 0.35);
}
.osi-toolbar-split.ui-splitbutton .ui-splitbutton-menubutton {
    border-left: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Split button icon override */
.osi-toolbar-spliticon::before {
    font-family: 'Material Symbols Outlined';
    content: 'mail';
    font-size: 17px;
}

/* Outline button (used elsewhere on the page) */
.ui-button.osi-contact-btn-outline {
    background: transparent;
    color: var(--osi-contact-primary);
    border: 1px solid var(--osi-contact-primary);
    border-radius: 8px !important;
    font-weight: 500 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.15s ease;
}
.ui-button.osi-contact-btn-outline:hover {
    background: rgba(37, 99, 235, 0.06);
}

.osi-contact-card-content .ui-button {
    border-radius: 8px !important;
    font-weight: 500 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.osi-contact-card-content .material-symbols-outlined {
    font-size: 18px;
}

.osi-contact-card {
    background: var(--osi-contact-surface);
    border-radius: 14px;
    border: 1px solid var(--osi-contact-border);
    box-shadow: var(--osi-contact-shadow);
    margin-bottom: 1rem;
    overflow: hidden;
}

.osi-contact-card-header {
    padding: 0.95rem 1.15rem;
    border-bottom: 1px solid var(--osi-contact-border);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--osi-contact-surface-alt);
}

.osi-contact-card-header .material-symbols-outlined {
    font-size: 1.2rem;
    color: var(--osi-contact-primary);
}

.osi-contact-card-header h2 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--osi-contact-text);
    letter-spacing: 0.01em;
}

.osi-contact-card-content {
    padding: 1.1rem 1.15rem;
}

.osi-contact-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.osi-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0.8rem 1rem;
    align-items: center;
}

.osi-contact-form-grid .p-outputlabel,
.osi-contact-form-grid .osi-contact-tracking-label {
    font-weight: 600;
    color: #2e476f;
    font-size: 0.9rem;
}

.osi-contact-joined {
    color: var(--osi-contact-success) !important;
    font-weight: 600;
}

.osi-contact-form-section {
    margin-bottom: 0.7rem;
}

.osi-contact-section-title {
    font-weight: 700;
    color: var(--osi-contact-primary);
    margin-bottom: 0.85rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid var(--osi-contact-border);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.osi-contact-termlist-flag {
    color: #0baccc;
    margin-left: auto;
}

.osi-contact-score-warn {
    color: #b06500;
    font-weight: 700;
}

.osi-contact-score-good {
    color: #17783e;
    font-weight: 700;
}

.osi-contact-mail-table {
    margin-top: 1rem;
}

.osi-contact-subject {
    font-weight: 600;
    color: #213f6d;
}

.osi-contact-preview {
    font-size: 0.85rem;
    color: var(--osi-contact-muted);
}

.osi-contact-notes-section {
    margin-top: 1rem;
}

.osi-contact-textarea,
textarea.osi-contact-textarea {
    width: 100%;
    box-sizing: border-box;
}

.osi-contact-debug-text {
    display: block;
    width: 100%;
    white-space: pre-wrap;
}

.osi-contact-tracking-details {
    margin-top: 0.85rem;
}

.osi-contact-no-tracking {
    display: block;
    margin-top: 0.8rem;
}

.osi-contact-tracking-box {
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: #f8fbff;
    border: 1px solid var(--osi-contact-border);
    border-radius: 10px;
}

.osi-contact-tracking-title {
    color: #385783;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
    border-bottom: 1px solid #dde8f9;
    padding-bottom: 0.45rem;
}

.osi-contact-tracking-label {
    font-weight: 600;
    color: #2e476f;
    font-size: 0.9rem;
}

.osi-contact-tracking-value {
    color: #243f67;
    font-size: 0.9rem;
    word-break: break-word;
}

.osi-contact-empty-state {
    padding: 14px;
    text-align: center;
    background-color: #f7f9fd;
    border: 1px dashed #d4deee;
    border-radius: 8px;
    color: #6c7f9d;
}

.osi-contact-inline-icon {
    margin-right: 8px;
    vertical-align: middle;
}

.osi-contact-raw {
    width: 100%;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 0.84rem;
    background-color: #f1f5fb;
}

@media (max-width: 992px) {
    .osi-contact-form-grid,
    .osi-contact-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .osi-contact-page {
        padding: 0.7rem;
    }

    .osi-contact-header {
        padding: 0.85rem 1rem;
    }

    .osi-contact-toolbar {
        gap: 0.3rem;
        padding: 0.5rem;
    }

    .osi-toolbar-spacer {
        display: none;
    }

    .osi-toolbar-divider {
        width: 100%;
        height: 1px;
        margin: 0.2rem 0;
    }

    .osi-toolbar-group {
        width: 100%;
        flex-wrap: wrap;
    }

    .osi-contact-toolbar .ui-button,
    .osi-contact-toolbar .ui-splitbutton {
        flex: 1 1 auto;
        justify-content: center;
        min-width: 0;
    }

    .osi-contact-termlist-flag {
        width: 100%;
        margin-left: 0;
    }
}

/* Color utility classes for icons */
.osi-green { color: #28a745; }
.osi-red { color: #dc3545; }
.osi-yellow { color: #ffc107; }
.osi-purple { color: #6f42c1; }
.osi-orange { color: #fd7e14; }
.black { color: #333; }

/* ===================================================================
   BILLING / MONTHLY CHARGES STYLES
   =================================================================== */
.billing-services-container {
    padding: 4px 0;
}

.billing-services-container .section-heading,
.payment-methods-container .section-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 16px 0;
}

.billing-services-container .section-heading .material-symbols-outlined,
.payment-methods-container .section-heading .material-symbols-outlined {
    font-size: 22px;
    color: var(--secondary-color, #4A90E2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-group {
    background: #fafbfc;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 14px 16px;
}

.service-group .group-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8e8e8;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    position: relative;
}

.service-item label {
    flex: 1;
    font-size: 0.82rem;
    color: #444;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
}

.service-item .price-input,
.service-item .ui-inputfield.price-input {
    width: 90px;
    text-align: right;
    font-size: 0.85rem;
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.service-item .currency-symbol {
    font-size: 0.82rem;
    color: #999;
    font-weight: 500;
}

.service-item.full-width {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
}

.service-item .description-input,
.service-item .ui-inputfield.description-input {
    width: 100%;
    box-sizing: border-box;
    font-size: 0.85rem;
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.service-group.additional-charges {
    grid-column: span 2;
}

/* ===================================================================
   CREDIT CARD / PAYMENT METHODS STYLES
   =================================================================== */
.payment-methods-container {
    padding: 4px 0;
}

.payment-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.credit-card-container {
    background: #fafbfc;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
}

.credit-card-container .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f0f4f8;
    border-bottom: 1px solid #e8e8e8;
}

.credit-card-container .card-header .card-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.card-badges {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-type-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 10px;
    background: var(--secondary-color, #4A90E2);
    color: #fff;
}

.auto-charge-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.72rem;
    font-weight: 500;
    color: #555;
}

.auto-charge-badge .material-symbols-outlined {
    font-size: 16px;
}

.card-details {
    padding: 14px 16px;
}

.card-number {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.card-number .detail-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
}

.card-number .masked-number {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.06em;
}

.card-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.card-fields .field-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.card-fields .field-group label {
    font-size: 0.72rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
}

.card-fields .field-group .ui-inputfield {
    font-size: 0.85rem;
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.card-fields .auto-charge-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    grid-column: span 2;
}

.card-fields .auto-charge-toggle label {
    text-transform: none;
    font-size: 0.82rem;
    color: #444;
    font-weight: 400;
}

.card-actions {
    display: flex;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.update-card-btn,
.remove-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    padding: 6px 12px;
}

.update-card-btn .material-symbols-outlined,
.remove-card-btn .material-symbols-outlined {
    font-size: 14px;
}

/* ===================================================================
   VIEW CLIENT RESPONSIVE
   =================================================================== */
@media (max-width: 900px) {
    .osi-vc-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .osi-vc-span-4 {
        grid-column: span 2;
    }

    .osi-vc-form-grid-2col {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-group.additional-charges {
        grid-column: span 1;
    }

    .payment-cards-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .osi-vc-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .osi-vc-form-grid {
        grid-template-columns: 1fr;
    }

    .osi-vc-span-2,
    .osi-vc-span-4 {
        grid-column: span 1;
    }

    .osi-vc-toggles {
        flex-direction: column;
    }

    .osi-vc-dialog-grid {
        grid-template-columns: 1fr;
    }

    .card-fields {
        grid-template-columns: 1fr;
    }

    .card-fields .auto-charge-toggle {
        grid-column: span 1;
    }
}

/* ===================================================================
   ADMIN LAYOUT STYLES (replaces mirage-layout)
   =================================================================== */

/* Base body */
.osi-admin-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f4f6f9;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Layout wrapper */
.osi-admin-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Main content area */
.osi-admin-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 0;
    width: 100%;
}

.osi-admin-main > .osi-admin-content {
    flex: 1 1 auto;
}

/* Page content */
.osi-admin-content {
    flex: 1;
    padding: 20px 24px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.osi-admin-content > form {
    display: block;
    width: 100%;
}

/* ===================================================================
   TOPBAR
   =================================================================== */
.osi-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 20px;
    height: 56px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.osi-topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.osi-topbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.osi-topbar-logo img {
    height: 32px;
    width: auto;
}

.osi-topbar-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    padding: 4px;
    border-radius: 6px;
    transition: background 0.2s;
}

.osi-topbar-menu-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.osi-topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Topbar search fields */
.osi-topbar-search {
    display: none;
}

@media (min-width: 992px) {
    .osi-topbar-search {
        display: block;
    }

    .osi-topbar-search .ui-autocomplete-input,
    .osi-topbar-search .ui-inputfield {
        font-size: 0.82rem;
        padding: 6px 10px;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        background: #f8f9fb;
        width: 160px;
        transition: all 0.2s;
    }

    .osi-topbar-search .ui-autocomplete-input:focus,
    .osi-topbar-search .ui-inputfield:focus {
        background: #fff;
        border-color: var(--secondary-color, #4A90E2);
        box-shadow: 0 0 0 2px rgba(74,144,226,0.12);
        width: 200px;
    }
}

/* Topbar action icons */
.osi-topbar-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.osi-topbar-action:hover {
    background: #f0f4f8;
    color: #333;
}

.osi-topbar-action .material-symbols-outlined {
    font-size: 22px;
}

/* Topbar profile */
.osi-topbar-profile {
    width: auto;
    gap: 6px;
    padding: 4px 10px;
}

.osi-topbar-username {
    font-size: 0.82rem;
    font-weight: 500;
    color: #333;
}

/* Small icon inside dropdown items */
.osi-topbar-icon-sm {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 4px;
}

/* Management mega dropdown */
.osi-topbar-mega-dropdown {
    max-height: 70vh;
    overflow: auto;
    min-width: 24rem;
}

/* Text danger utility */
.osi-text-danger {
    color: #dc3545;
}

/* ===================================================================
   SIDEBAR (mobile offcanvas)
   =================================================================== */
.osi-admin-sidebar {
    display: none;
    width: 280px;
    background: #fff;
    border-right: 1px solid #e2e8f0;
    position: fixed;
    top: 0;
    left: -280px;
    height: 100vh;
    z-index: 1100;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 2px 0 8px rgba(0,0,0,0.08);
}

.osi-admin-sidebar.osi-sidebar-open {
    left: 0;
}

@media (max-width: 991.98px) {
    .osi-admin-sidebar {
        display: block;
    }
}

/* Sidebar overlay */
.osi-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1050;
}

.osi-sidebar-overlay.active {
    display: block;
}

/* Sidebar internal styling */
.osi-admin-sidebar .sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.osi-admin-sidebar .sidebar-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.osi-admin-sidebar .sidebar-logo img {
    height: 28px;
}

.osi-admin-sidebar .sidebar-logo .app-name {
    font-size: 0.9rem;
}

.osi-admin-sidebar .sidebar-logo .sidebar-pin {
    display: none;
}

.osi-admin-sidebar .osi-sidebar-menu-container {
    padding: 8px 0;
}

.osi-admin-sidebar .accordion-button {
    font-size: 0.85rem;
    padding: 10px 20px;
}

.osi-admin-sidebar .list-group-item {
    font-size: 0.82rem;
    padding: 6px 20px 6px 36px;
    border: none;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.osi-admin-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    font-size: 0.82rem;
    color: #888;
    margin-top: auto;
}

.osi-footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.osi-footer-left strong {
    color: #333;
    margin-right: 4px;
}

.osi-footer-left span {
    color: #999;
}

/* ===================================================================
   AJAX STATUS SPINNER
   =================================================================== */
.osi-ajax-status {
    width: 32px;
    height: 32px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000002;
}

@keyframes osi-spin-animation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.osi-spin {
    animation: osi-spin-animation 1s linear infinite;
    font-size: 32px;
    color: var(--secondary-color, #4A90E2);
}

/* ===================================================================
   HORIZONTAL MENU OVERRIDES (navbar-osi)
   =================================================================== */
.navbar-osi.navbar-light {
    background-color: #eaf3ff;
    border-bottom: 1px solid #cddffb;
    margin: 0;
    padding-top: 2px;
    padding-bottom: 2px;
}

.navbar-osi .navbar-brand,
.navbar-osi .nav-link {
    color: #0a58ca;
    font-size: 1.02rem;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.navbar-osi .nav-link .material-symbols-outlined {
    font-size: 1.2rem;
    vertical-align: text-bottom;
}

.navbar-osi .menu-top-dashboard > .nav-link > .material-symbols-outlined { color: #2f5fd4; }
.navbar-osi .menu-top-contacts > .nav-link > .material-symbols-outlined { color: #1178a6; }
.navbar-osi .menu-top-members > .nav-link > .material-symbols-outlined { color: #1f7f53; }
.navbar-osi .menu-top-rooms > .nav-link > .material-symbols-outlined { color: #6b4dc7; }
.navbar-osi .menu-top-phones > .nav-link > .material-symbols-outlined { color: #b16500; }
.navbar-osi .menu-top-mail > .nav-link > .material-symbols-outlined { color: #8e3f9d; }
.navbar-osi .menu-top-finance > .nav-link > .material-symbols-outlined { color: #9a5600; }
.navbar-osi .menu-top-other > .nav-link > .material-symbols-outlined { color: #0a6d92; }
.navbar-osi .menu-top-suites > .nav-link > .material-symbols-outlined { color: #7a3f2d; }

.navbar-osi .nav-link:hover,
.navbar-osi .nav-link:focus,
.navbar-osi .dropdown-item:hover,
.navbar-osi .dropdown-item:focus {
    color: #084298;
    background-color: rgba(13, 110, 253, 0.06);
}

.navbar-osi .dropdown-menu {
    border-color: #cddffb;
    font-size: 0.85rem;
}

.navbar-osi .dropdown-menu .dropdown-item::before {
    content: '\203A';
    display: inline-block;
    margin-right: .5rem;
    color: #0a58ca;
    font-weight: 700;
    line-height: 1;
}

/* =============================================
   List Clients Page (osi-lc-*)
   ============================================= */

.osi-lc-page {
    max-width: 1400px;
    margin: 0 auto;
}

/* Page Header */
.osi-lc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #dbe6f8;
}

.osi-lc-header-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.osi-lc-header-icon {
    font-size: 2.4rem;
    color: #255fcb;
    background: linear-gradient(135deg, #eaf1ff 0%, #dce8fd 100%);
    border-radius: 14px;
    padding: 0.55rem;
    line-height: 1;
}

.osi-lc-title {
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #12305e;
    margin: 0;
    letter-spacing: -0.01em;
}

.osi-lc-subtitle {
    font-size: 0.9rem;
    color: #5c6f92;
    margin: 0.15rem 0 0;
    font-weight: 500;
}

.osi-lc-header-right {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.osi-lc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #edf3ff 0%, #e3edfc 100%);
    border: 1px solid #c8daf5;
    border-radius: 999px;
    padding: 0.4rem 0.95rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e3966;
}

.osi-lc-badge .material-symbols-outlined {
    font-size: 18px;
    color: #3b72d4;
}

/* Card Container */
.osi-lc-card {
    background: #ffffff;
    border: 1px solid #d8e2f2;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(19, 47, 95, 0.07);
    overflow: hidden;
}

.osi-lc-card-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    background: linear-gradient(180deg, #f8faff 0%, #f3f7fd 100%);
    border-bottom: 1px solid #e4ecf8;
}

.osi-lc-card-toolbar-left {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #1e3966;
    font-weight: 700;
    font-size: 0.95rem;
}

.osi-lc-card-toolbar-left .material-symbols-outlined {
    font-size: 20px;
    color: #4a7ee0;
}

.osi-lc-card-toolbar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.osi-lc-btn-export.ui-button,
.osi-lc-btn-export.p-button {
    background: #fff !important;
    color: #2d5ba8 !important;
    border: 1px solid #c0d4f3 !important;
    border-radius: 0.6rem !important;
    font-size: 0.82rem !important;
    font-weight: 600;
    padding: 0.4rem 0.85rem !important;
    box-shadow: 0 2px 6px rgba(37, 95, 203, 0.08) !important;
    transition: all 0.2s ease;
}

.osi-lc-btn-export.ui-button:hover,
.osi-lc-btn-export.p-button:hover {
    background: #edf3ff !important;
    border-color: #92b5ea !important;
    transform: translateY(-1px);
}

/* DataTable Overrides */
.osi-lc-datatable.ui-datatable {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.osi-lc-datatable .ui-datatable-header {
    display: none;
}

.osi-lc-datatable thead th {
    background: #f5f8fd !important;
    color: #344d73 !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    padding: 0.7rem 0.9rem !important;
    border-color: #e4ecf6 !important;
    white-space: nowrap;
}

.osi-lc-datatable thead th .ui-column-filter {
    width: 100%;
    margin-top: 0.45rem;
    font-size: 0.82rem !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    border-radius: 0.5rem !important;
    padding: 0.35rem 0.6rem !important;
    border: 1px solid #d0ddf1 !important;
    background: #fff !important;
    color: #1d2d4d !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.osi-lc-datatable thead th .ui-column-filter:focus {
    border-color: #5b94ee !important;
    box-shadow: 0 0 0 3px rgba(59, 114, 212, 0.12) !important;
    outline: none;
}

.osi-lc-datatable tbody td {
    padding: 0.65rem 0.9rem !important;
    border-color: #edf2fa !important;
    color: #2b406a;
    font-size: 0.88rem;
    vertical-align: middle;
}

.osi-lc-row {
    transition: background-color 0.15s ease;
    cursor: pointer;
}

.osi-lc-datatable tbody tr.osi-lc-row:hover {
    background: #f0f5ff !important;
}

.osi-lc-datatable tbody tr.ui-state-highlight {
    background: #dfe9fd !important;
    color: #12305e !important;
}

/* Company Column Cell */
.osi-lc-company-cell {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.osi-lc-company-icon {
    font-size: 18px;
    color: #6d93d4;
    flex-shrink: 0;
}

.osi-lc-col-company {
    font-weight: 600;
    color: #1a3560;
}

/* Email Column */
.osi-lc-email-text {
    color: #4272c4;
    font-size: 0.84rem;
}

.osi-lc-col-email {
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Column Widths */
.osi-lc-col-floor {
    width: 90px;
    text-align: center;
}

.osi-lc-col-plan {
    width: 110px;
    text-align: right;
}

.osi-lc-col-date {
    width: 120px;
}

/* Floor Badge */
.osi-lc-floor-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #eef3fd;
    color: #2d5ba8;
    font-weight: 700;
    font-size: 0.82rem;
    border: 1px solid #d5e2f7;
}

/* Currency */
.osi-lc-currency {
    font-weight: 600;
    color: #0f766e;
    font-variant-numeric: tabular-nums;
}

/* Date */
.osi-lc-date-text {
    color: #5c6f92;
    font-size: 0.84rem;
}

/* Paginator */
.osi-lc-datatable .ui-paginator {
    background: #f9fbff !important;
    border-top: 1px solid #e4ecf6 !important;
    border-bottom: none !important;
    padding: 0.65rem 1rem !important;
    font-size: 0.85rem;
}

.osi-lc-datatable .ui-paginator .ui-paginator-page.ui-state-active {
    background: #255fcb !important;
    color: #fff !important;
    border-color: #255fcb !important;
    border-radius: 0.45rem !important;
}

.osi-lc-datatable .ui-paginator .ui-paginator-page {
    border-radius: 0.45rem !important;
    min-width: 2rem;
    height: 2rem;
}

.osi-lc-datatable .ui-paginator .ui-paginator-current {
    color: #5c6f92;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991.98px) {
    .osi-lc-header {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .osi-lc-title {
        font-size: 1.35rem;
    }

    .osi-lc-col-email {
        max-width: 180px;
    }
}

@media (max-width: 767.98px) {
    .osi-lc-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .osi-lc-card-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .osi-lc-col-email {
        display: none;
    }
}

/* =============================================
   Terminated Clients Page (osi-ltc-*)
   ============================================= */

.osi-ltc-page {
    max-width: 1460px;
    margin: 0 auto;
    font-family: "Inter", "Segoe UI", sans-serif;
}

.osi-ltc-header,
.osi-ec-header,
.osi-lcc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.osi-ltc-header-main,
.osi-ec-header-main,
.osi-lcc-header-main {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.osi-ltc-header-icon,
.osi-ec-header-icon,
.osi-lcc-header-icon {
    font-size: 2.3rem;
    border-radius: 14px;
    padding: 0.52rem;
    line-height: 1;
}

.osi-ltc-header-icon {
    color: #a83232;
    background: linear-gradient(140deg, #ffe9e9 0%, #ffdcdc 100%);
    box-shadow: 0 8px 16px rgba(168, 50, 50, 0.15);
}

.osi-ltc-title,
.osi-ec-title,
.osi-lcc-title {
    margin: 0;
    font-family: "Jost", "Inter", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #172b4d;
}

.osi-ltc-subtitle,
.osi-ec-subtitle,
.osi-lcc-subtitle {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: #5a6b89;
    font-weight: 500;
}

.osi-ltc-kpis,
.osi-ec-kpis,
.osi-lcc-kpis {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.osi-ltc-kpi,
.osi-ec-kpi,
.osi-lcc-kpi {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid #d9e4f6;
    background: linear-gradient(180deg, #f9fbff 0%, #f1f6ff 100%);
    color: #27436f;
}

.osi-ltc-kpi .material-symbols-outlined,
.osi-ec-kpi .material-symbols-outlined,
.osi-lcc-kpi .material-symbols-outlined {
    font-size: 18px;
    color: #2f65b5;
}

.osi-ltc-kpi.terminated {
    border-color: #f0c6c6;
    background: linear-gradient(180deg, #fff5f5 0%, #ffecec 100%);
    color: #7f2222;
}

.osi-ltc-kpi.terminated .material-symbols-outlined,
.osi-ec-kpi.accent .material-symbols-outlined,
.osi-lcc-kpi.accent .material-symbols-outlined {
    color: #a83232;
}

.osi-ltc-kpi.accent,
.osi-ec-kpi.accent,
.osi-lcc-kpi.accent {
    border-color: #f0c6c6;
    background: linear-gradient(180deg, #fff5f5 0%, #ffecec 100%);
    color: #7f2222;
}

.osi-ltc-toolbar,
.osi-ec-toolbar,
.osi-lcc-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 0.95rem 1.1rem;
    margin-bottom: 0.9rem;
    border-radius: 14px;
    border: 1px solid #dce7f8;
    background: linear-gradient(135deg, #f9fbff 0%, #f3f7fe 100%);
}

.osi-ltc-toolbar-text,
.osi-ec-toolbar-text,
.osi-lcc-toolbar-text {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #304b74;
    font-size: 0.9rem;
    font-weight: 500;
}

.osi-ltc-toolbar-text .material-symbols-outlined,
.osi-ec-toolbar-text .material-symbols-outlined,
.osi-lcc-toolbar-text .material-symbols-outlined {
    font-size: 19px;
    color: #3e6cb8;
}

.osi-ltc-toolbar-actions,
.osi-ec-toolbar-actions,
.osi-lcc-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.osi-ltc-btn-collections.ui-button,
.osi-ltc-btn-collections.p-button,
.osi-ec-btn-primary.ui-button,
.osi-ec-btn-primary.p-button {
    background: linear-gradient(135deg, #b13838 0%, #9a2929 100%) !important;
    border: 1px solid #8b2424 !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    padding: 0.45rem 0.9rem !important;
    box-shadow: 0 8px 16px rgba(154, 41, 41, 0.2) !important;
}

.osi-ltc-btn-collections.ui-button:hover,
.osi-ltc-btn-collections.p-button:hover,
.osi-ec-btn-primary.ui-button:hover,
.osi-ec-btn-primary.p-button:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.osi-ltc-btn-secondary.ui-button,
.osi-ltc-btn-secondary.p-button,
.osi-lcc-btn-secondary.ui-button,
.osi-lcc-btn-secondary.p-button {
    background: #fff !important;
    color: #335684 !important;
    border: 1px solid #c6d7f2 !important;
    border-radius: 10px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    padding: 0.45rem 0.85rem !important;
}

.osi-ltc-card,
.osi-ec-card,
.osi-lcc-card {
    border: 1px solid #d8e3f4;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 28px rgba(17, 44, 91, 0.08);
}

.osi-ltc-table.ui-datatable,
.osi-ec-table.ui-datatable,
.osi-lcc-table.ui-datatable {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.osi-ltc-table .ui-datatable-header,
.osi-ec-table .ui-datatable-header,
.osi-lcc-table .ui-datatable-header {
    display: none;
}

.osi-ltc-table thead th,
.osi-ec-table thead th,
.osi-lcc-table thead th {
    background: #f5f8fe !important;
    color: #30496f !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    font-size: 0.77rem !important;
    font-weight: 700 !important;
    border-color: #e3ebf8 !important;
    padding: 0.72rem 0.82rem !important;
    white-space: nowrap;
}

.osi-ltc-table thead th .ui-column-filter,
.osi-ec-table thead th .ui-column-filter,
.osi-lcc-table thead th .ui-column-filter {
    width: 100%;
    margin-top: 0.45rem;
    border: 1px solid #cfddf1 !important;
    border-radius: 8px !important;
    padding: 0.35rem 0.6rem !important;
    font-size: 0.82rem !important;
    color: #223d66 !important;
    background: #fff !important;
}

.osi-ltc-table tbody td,
.osi-ec-table tbody td,
.osi-lcc-table tbody td {
    border-color: #edf2fb !important;
    color: #243f68;
    font-size: 0.88rem;
    padding: 0.7rem 0.82rem !important;
    vertical-align: middle;
}

.osi-ltc-row,
.osi-ec-row,
.osi-lcc-row {
    transition: background-color 0.14s ease;
    cursor: pointer;
}

.osi-ltc-table tbody tr.osi-ltc-row:hover,
.osi-ec-table tbody tr.osi-ec-row:hover,
.osi-lcc-table tbody tr.osi-lcc-row:hover {
    background: #f2f6ff !important;
}

.osi-ltc-table tbody tr.ui-state-highlight,
.osi-ec-table tbody tr.ui-state-highlight,
.osi-lcc-table tbody tr.ui-state-highlight {
    background: #dfe9fd !important;
    color: #122f5e !important;
}

.osi-ltc-company,
.osi-ec-company,
.osi-lcc-company {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1f3a68;
}

.osi-ltc-company .material-symbols-outlined,
.osi-ec-company .material-symbols-outlined,
.osi-lcc-company .material-symbols-outlined {
    font-size: 18px;
    color: #5f84c8;
}

.osi-ltc-contact,
.osi-ec-contact {
    font-weight: 500;
    color: #2b4673;
}

.osi-ltc-email,
.osi-ec-email {
    color: #3f6eba;
    font-size: 0.84rem;
}

.osi-ltc-money,
.osi-ec-money,
.osi-lcc-money {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #0f766e;
}

.osi-ltc-date,
.osi-ec-date,
.osi-lcc-date {
    color: #506487;
    font-size: 0.84rem;
}

.osi-ec-floor {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #eef3fd;
    color: #2d5ba8;
    font-weight: 700;
    border: 1px solid #d5e2f7;
}

.osi-ec-center {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.osi-ec-selected-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
}

.osi-ec-selected-badge .material-symbols-outlined {
    font-size: 18px;
}

/* Selected row styling */
.osi-ec-table tbody tr.osi-ec-row-selected,
.osi-ec-table tbody tr.osi-ec-row-selected.ui-state-highlight {
    background: #eef6ee !important;
    border-left: 4px solid #16a34a !important;
}

.osi-ec-table tbody tr.osi-ec-row-selected:hover {
    background: #e2f0e2 !important;
}

/* Selected count KPI */
.osi-ec-kpi.selected {
    border-color: #86d49b;
    background: linear-gradient(180deg, #ebfaef 0%, #d8f5e0 100%);
    color: #115c32;
    animation: osi-ec-pulse 0.3s ease;
}

.osi-ec-kpi.selected .material-symbols-outlined {
    color: #16a34a;
}

@keyframes osi-ec-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.osi-ec-btn-select-all.ui-button,
.osi-ec-btn-select-all.p-button {
    background: #fff !important;
    color: #16a34a !important;
    border: 1px solid #86d49b !important;
    border-radius: 10px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    padding: 0.45rem 0.85rem !important;
}

.osi-ec-btn-select-all.ui-button:hover,
.osi-ec-btn-select-all.p-button:hover {
    background: #f0fdf4 !important;
}

.osi-ec-btn-clear-all.ui-button,
.osi-ec-btn-clear-all.p-button {
    background: #fff !important;
    color: #64748b !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 10px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    padding: 0.45rem 0.85rem !important;
}

.osi-ec-btn-clear-all.ui-button:hover,
.osi-ec-btn-clear-all.p-button:hover {
    background: #f8fafc !important;
    color: #475569 !important;
}

.osi-ltc-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.osi-ltc-action-view.ui-button,
.osi-ltc-action-view.p-button,
.osi-ltc-action-reinstate.ui-button,
.osi-ltc-action-reinstate.p-button {
    width: 2rem !important;
    height: 2rem !important;
    min-width: 2rem !important;
    border-radius: 9px !important;
}

.osi-ltc-action-view.ui-button,
.osi-ltc-action-view.p-button {
    background: #fff !important;
    border: 1px solid #c3d6f5 !important;
    color: #275eaf !important;
}

.osi-ltc-action-reinstate.ui-button,
.osi-ltc-action-reinstate.p-button {
    background: linear-gradient(135deg, #1f8b57 0%, #157746 100%) !important;
    border: 1px solid #0f663b !important;
    color: #fff !important;
}

.osi-ltc-table .ui-paginator,
.osi-ec-table .ui-paginator,
.osi-lcc-table .ui-paginator {
    background: #f9fbff !important;
    border-top: 1px solid #e4ecf8 !important;
    border-bottom: none !important;
    padding: 0.65rem 0.95rem !important;
    font-size: 0.85rem;
}

.osi-ltc-table .ui-paginator .ui-paginator-page.ui-state-active,
.osi-ec-table .ui-paginator .ui-paginator-page.ui-state-active,
.osi-lcc-table .ui-paginator .ui-paginator-page.ui-state-active {
    background: #2a62ba !important;
    border-color: #2a62ba !important;
    color: #fff !important;
    border-radius: 8px !important;
}

.osi-ltc-table .ui-paginator .ui-paginator-page,
.osi-ec-table .ui-paginator .ui-paginator-page,
.osi-lcc-table .ui-paginator .ui-paginator-page {
    border-radius: 8px !important;
    min-width: 1.95rem;
    height: 1.95rem;
}

.osi-ltc-confirm .ui-button {
    border-radius: 8px !important;
}

.osi-ec-page,
.osi-lcc-page {
    max-width: 1460px;
    margin: 0 auto;
    font-family: "Inter", "Segoe UI", sans-serif;
}

.osi-ec-header-icon {
    color: #9f2a5d;
    background: linear-gradient(140deg, #ffeef7 0%, #fbe3f0 100%);
    box-shadow: 0 8px 16px rgba(159, 42, 93, 0.15);
}

.osi-lcc-header-icon {
    color: #2a5ca7;
    background: linear-gradient(140deg, #eaf2ff 0%, #deebff 100%);
    box-shadow: 0 8px 16px rgba(42, 92, 167, 0.15);
}

.osi-ec-help-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    border-radius: 10px;
    padding: 0.4rem 0.75rem;
    border: 1px solid #d0ddf1;
    color: #2f4e79;
    background: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}

.osi-ec-help-link .material-symbols-outlined {
    font-size: 18px;
    color: #3f6cb5;
}

.osi-ec-help-link:hover,
.osi-ec-help-link:focus {
    background: #f1f6ff;
    color: #24406a;
}

@media (max-width: 767.98px) {
    .osi-ltc-title,
    .osi-ec-title,
    .osi-lcc-title {
        font-size: 1.45rem;
    }

    .osi-ltc-toolbar,
    .osi-ec-toolbar,
    .osi-lcc-toolbar {
        align-items: flex-start;
    }

    .osi-ltc-toolbar-actions,
    .osi-ec-toolbar-actions,
    .osi-lcc-toolbar-actions {
        width: 100%;
    }
}

/* =============================================
   Email Delinqs Page (osi-ed-*)
   ============================================= */

.osi-ed-page {
    max-width: 1400px;
    margin: 0 auto;
    font-family: "Inter", "Segoe UI", sans-serif;
}

.osi-ed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fff0eb 50%, #fef3e2 100%);
    border-radius: 16px;
    border: 1px solid rgba(220, 80, 50, 0.12);
}

.osi-ed-header-main {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.osi-ed-header-icon {
    font-size: 2.25rem;
    color: #c0392b;
    background: linear-gradient(140deg, #fde8e5 0%, #f9d5d0 100%);
    border-radius: 14px;
    padding: 0.52rem;
    line-height: 1;
}

.osi-ed-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.02em;
}

.osi-ed-subtitle {
    margin: 0.15rem 0 0;
    font-size: 0.92rem;
    color: #64748b;
    font-weight: 400;
}

.osi-ed-kpis {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    flex-wrap: wrap;
}

.osi-ed-kpi-wrap {
    display: contents;
}

.osi-ed-kpi {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: #f1f5f9;
    color: #475569;
    transition: all 0.25s ease;
}

.osi-ed-kpi .material-symbols-outlined {
    font-size: 1.15rem;
}

.osi-ed-kpi.selected {
    background: #dcfce7;
    color: #15803d;
    animation: osi-ed-pulse 0.3s ease;
}

.osi-ed-kpi.selected .material-symbols-outlined {
    color: #16a34a;
}

@keyframes osi-ed-pulse {
    50% { transform: scale(1.06); }
}

.osi-ed-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.osi-ed-toolbar-text {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.84rem;
    color: #64748b;
}

.osi-ed-toolbar-text .material-symbols-outlined {
    font-size: 1.15rem;
    color: #94a3b8;
}

.osi-ed-toolbar-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.osi-ed-btn-primary.ui-button,
.osi-ed-btn-primary.p-button {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.55rem 1.15rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(192, 57, 43, 0.25);
}

.osi-ed-btn-primary.ui-button:hover,
.osi-ed-btn-primary.p-button:hover {
    background: linear-gradient(135deg, #a93226 0%, #c0392b 100%);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.35);
}

.osi-ed-btn-secondary.ui-button,
.osi-ed-btn-secondary.p-button {
    background: #fff;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.55rem 1.15rem;
    transition: all 0.2s ease;
}

.osi-ed-btn-secondary.ui-button:hover,
.osi-ed-btn-secondary.p-button:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

.osi-ed-btn-select-all.ui-button,
.osi-ed-btn-select-all.p-button {
    background: #fff;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.55rem 1.15rem;
    transition: all 0.2s ease;
}

.osi-ed-btn-select-all.ui-button:hover,
.osi-ed-btn-select-all.p-button:hover {
    background: #f0fdf4;
    border-color: #86efac;
}

.osi-ed-btn-clear-all.ui-button,
.osi-ed-btn-clear-all.p-button {
    background: #fff;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.55rem 1.15rem;
    transition: all 0.2s ease;
}

.osi-ed-btn-clear-all.ui-button:hover,
.osi-ed-btn-clear-all.p-button:hover {
    background: #fef2f2;
    border-color: #fca5a5;
}

.osi-ed-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.osi-ed-table.ui-datatable {
    border: none;
    border-radius: 14px;
    overflow: hidden;
}

.osi-ed-table .ui-datatable-header {
    background: transparent;
    border: none;
}

.osi-ed-table thead th {
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
    color: #475569;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.85rem 1rem;
}

.osi-ed-table thead th .ui-column-filter {
    width: 100%;
    margin-top: 0.35rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    padding: 0.3rem 0.5rem;
    font-size: 0.82rem;
    transition: border-color 0.2s;
}

.osi-ed-table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.88rem;
    color: #334155;
    vertical-align: middle;
}

.osi-ed-row {
    transition: background 0.15s ease;
    cursor: pointer;
}

.osi-ed-table tbody tr.osi-ed-row:hover {
    background: #fefce8 !important;
}

.osi-ed-table tbody tr.ui-state-highlight {
    background: #fef9c3 !important;
    color: #334155;
}

.osi-ed-company {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1e293b;
}

.osi-ed-company .material-symbols-outlined {
    font-size: 1.2rem;
    color: #94a3b8;
}

.osi-ed-contact {
    font-weight: 500;
    color: #334155;
}

.osi-ed-email {
    color: #6366f1;
    font-size: 0.85rem;
}

.osi-ed-owes {
    font-weight: 700;
    color: #dc2626;
    font-size: 0.95rem;
}

.osi-ed-date {
    color: #64748b;
    font-size: 0.85rem;
}

.osi-ed-selected-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #dcfce7;
}

.osi-ed-selected-badge .material-symbols-outlined {
    font-size: 1.1rem;
    color: #16a34a;
}

.osi-ed-table tbody tr.osi-ed-row-selected,
.osi-ed-table tbody tr.osi-ed-row-selected.ui-state-highlight {
    background: #fef9c3 !important;
}

.osi-ed-table tbody tr.osi-ed-row-selected:hover {
    background: #fef08a !important;
}

@media (max-width: 768px) {
    .osi-ed-title {
        font-size: 1.45rem;
    }

    .osi-ed-toolbar {
        align-items: flex-start;
    }

    .osi-ed-toolbar-actions {
        width: 100%;
    }
}

/* =============================================
   Email Compose Selected Page (osi-ecs-*)
   ============================================= */

.osi-ecs-page {
    max-width: 1200px;
    margin: 0 auto;
    font-family: "Inter", "Segoe UI", sans-serif;
}

.osi-ecs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.osi-ecs-header-main {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.osi-ecs-header-icon {
    font-size: 2.25rem;
    color: #7f2762;
    background: linear-gradient(140deg, #fceffe 0%, #f6e2fa 100%);
    border-radius: 14px;
    padding: 0.52rem;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(127, 39, 98, 0.16);
}

.osi-ecs-title {
    margin: 0;
    font-family: "Jost", "Inter", sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #172b4d;
}

.osi-ecs-subtitle {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: #5a6b89;
    font-weight: 500;
}

.osi-ecs-kpis {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.osi-ecs-kpi {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid #d9e4f6;
    background: linear-gradient(180deg, #f9fbff 0%, #f1f6ff 100%);
    color: #27436f;
}

.osi-ecs-kpi .material-symbols-outlined {
    font-size: 18px;
    color: #2f65b5;
}

.osi-ecs-kpi.accent {
    border-color: #eac6de;
    background: linear-gradient(180deg, #fff5fb 0%, #fcecf6 100%);
    color: #7a275d;
}

.osi-ecs-kpi.accent .material-symbols-outlined {
    color: #9b3274;
}

.osi-ecs-card {
    border: 1px solid #d8e3f4;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 28px rgba(17, 44, 91, 0.08);
    padding: 1rem;
}

.osi-ecs-toolbar {
    border: 1px solid #e1e9f8;
    border-radius: 14px;
    background: linear-gradient(135deg, #fafcff 0%, #f4f8ff 100%);
    padding: 0.95rem 1rem;
    margin-bottom: 1rem;
}

.osi-ecs-field {
    margin-bottom: 0.8rem;
}

.osi-ecs-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #2e4972;
}

.osi-ecs-subject-input {
    width: 100%;
}

.osi-ecs-sender-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.osi-ecs-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    border: 1px solid #d5e1f4;
    border-radius: 10px;
    padding: 0.35rem 0.6rem;
    color: #2d4a74;
    font-size: 0.85rem;
    font-weight: 500;
}

.osi-ecs-attachment-box {
    border: 1px dashed #c7d7f1;
    border-radius: 12px;
    background: #fbfdff;
    padding: 0.85rem;
    margin-bottom: 1rem;
}

.osi-ecs-attachment-header {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #2f4d78;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.osi-ecs-attachment-header .material-symbols-outlined {
    font-size: 19px;
    color: #476fb0;
}

.osi-ecs-attachment-ready {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.42rem 0.75rem;
    border: 1px solid #bfe4cc;
    background: #eefbf3;
    color: #12643b;
    font-size: 0.82rem;
    font-weight: 600;
}

.osi-ecs-attachment-ready .material-symbols-outlined {
    font-size: 18px;
    color: #178d52;
}

.osi-ecs-editor-wrap {
    margin-bottom: 1rem;
}

.osi-ecs-editor-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.45rem;
    color: #304b74;
    font-size: 0.88rem;
    font-weight: 700;
}

.osi-ecs-editor-label .material-symbols-outlined {
    font-size: 19px;
    color: #486fae;
}

.osi-ecs-editor-wrap .ql-toolbar,
.osi-ecs-editor-wrap .ql-container {
    border-color: #d5e1f4;
}

.osi-ecs-editor-wrap .ql-container {
    min-height: 320px;
    border-radius: 0 0 10px 10px;
}

.osi-ecs-editor-wrap .ql-toolbar {
    border-radius: 10px 10px 0 0;
    background: #f6f9ff;
}

.osi-ecs-preview {
    border: 1px solid #dbe6f7;
    border-radius: 12px;
    padding: 0.8rem;
    background: #fcfdff;
    margin-bottom: 1rem;
}

.osi-ecs-preview-title {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
    color: #2f4d77;
    font-size: 0.88rem;
    font-weight: 700;
}

.osi-ecs-preview-title .material-symbols-outlined {
    font-size: 18px;
    color: #4a72b2;
}

.osi-ecs-preview-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.osi-ecs-preview-table.ui-datatable {
    border: 1px solid #e1e9f8;
    border-radius: 10px;
    overflow: hidden;
}

.osi-ecs-preview-table thead th {
    background: #f3f7ff !important;
    color: #344d73 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-size: 0.74rem !important;
    font-weight: 700 !important;
    border-color: #e3ebf8 !important;
}

.osi-ecs-preview-table tbody td {
    border-color: #edf2fb !important;
    color: #243f68;
    font-size: 0.86rem;
}

.osi-ecs-selected-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    border-radius: 999px;
    padding: 0.15rem 0.45rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.osi-ecs-selected-flag.on {
    background: #ebfaef;
    border: 1px solid #b8e3c4;
    color: #156a3f;
}

.osi-ecs-selected-flag.off {
    background: #f5f7fb;
    border: 1px solid #d7e0ef;
    color: #516484;
}

.osi-ecs-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.osi-ecs-btn-primary.ui-button,
.osi-ecs-btn-primary.p-button {
    background: linear-gradient(135deg, #2f73d9 0%, #245fb8 100%) !important;
    border: 1px solid #1f53a0 !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-size: 0.84rem !important;
    font-weight: 700 !important;
    padding: 0.5rem 0.95rem !important;
    box-shadow: 0 10px 20px rgba(42, 97, 184, 0.2) !important;
}

.osi-ecs-btn-primary.ui-button:hover,
.osi-ecs-btn-primary.p-button:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.osi-ecs-btn-secondary.ui-button,
.osi-ecs-btn-secondary.p-button {
    background: #fff !important;
    color: #335684 !important;
    border: 1px solid #c6d7f2 !important;
    border-radius: 10px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    padding: 0.45rem 0.85rem !important;
}

@media (max-width: 767.98px) {
    .osi-ecs-title {
        font-size: 1.45rem;
    }

    .osi-ecs-actions {
        justify-content: stretch;
    }

    .osi-ecs-btn-primary.ui-button,
    .osi-ecs-btn-primary.p-button,
    .osi-ecs-btn-secondary.ui-button,
    .osi-ecs-btn-secondary.p-button {
        width: 100% !important;
    }
}

/* =============================================
   List Payments Page (osi-lp-*)
   ============================================= */

.osi-lp-page {
    max-width: 1480px;
    margin: 0 auto;
    font-family: "Inter", "Segoe UI", sans-serif;
}

.osi-lp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.osi-lp-header-main {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.osi-lp-header-icon {
    font-size: 2.3rem;
    color: #8c4e11;
    background: linear-gradient(140deg, #fff1e0 0%, #ffe7cc 100%);
    border-radius: 14px;
    padding: 0.52rem;
    line-height: 1;
    box-shadow: 0 8px 16px rgba(140, 78, 17, 0.15);
}

.osi-lp-title {
    margin: 0;
    font-family: "Jost", "Inter", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #172b4d;
}

.osi-lp-subtitle {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: #5a6b89;
    font-weight: 500;
}

.osi-lp-kpis {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.osi-lp-kpi {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid #d9e4f6;
    background: linear-gradient(180deg, #f9fbff 0%, #f1f6ff 100%);
    color: #27436f;
}

.osi-lp-kpi .material-symbols-outlined {
    font-size: 18px;
    color: #2f65b5;
}

.osi-lp-kpi.accent {
    border-color: #f0d7b6;
    background: linear-gradient(180deg, #fff8ef 0%, #fff2df 100%);
    color: #7b4d10;
}

.osi-lp-kpi.accent .material-symbols-outlined {
    color: #b06b16;
}

.osi-lp-filter-card,
.osi-lp-table-card {
    border: 1px solid #d8e3f4;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 28px rgba(17, 44, 91, 0.08);
}

.osi-lp-filter-card {
    margin-bottom: 0.9rem;
    padding: 0.95rem 1rem;
    background: linear-gradient(135deg, #fafcff 0%, #f4f8ff 100%);
}

.osi-lp-filter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr)) 1.2fr auto;
    gap: 0.9rem;
    align-items: end;
}

.osi-lp-filter-item .ui-calendar,
.osi-lp-filter-item input {
    width: 100%;
}

.osi-lp-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #2e4972;
}

.osi-lp-filter-checks {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.osi-lp-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    border: 1px solid #d5e1f4;
    border-radius: 10px;
    padding: 0.35rem 0.6rem;
    color: #2d4a74;
    font-size: 0.84rem;
    font-weight: 500;
}

.osi-lp-btn-secondary.ui-button,
.osi-lp-btn-secondary.p-button {
    background: #fff !important;
    color: #335684 !important;
    border: 1px solid #c6d7f2 !important;
    border-radius: 10px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    padding: 0.45rem 0.85rem !important;
}

.osi-lp-btn-danger.ui-button,
.osi-lp-btn-danger.p-button {
    background: linear-gradient(135deg, #b13838 0%, #982323 100%) !important;
    border: 1px solid #8b2424 !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    padding: 0.45rem 0.85rem !important;
}

.osi-lp-table.ui-datatable {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.osi-lp-table thead th {
    background: #f5f8fe !important;
    color: #30496f !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    font-size: 0.77rem !important;
    font-weight: 700 !important;
    border-color: #e3ebf8 !important;
    padding: 0.72rem 0.82rem !important;
    white-space: nowrap;
}

.osi-lp-table thead th .ui-column-filter {
    width: 100%;
    margin-top: 0.45rem;
    border: 1px solid #cfddf1 !important;
    border-radius: 8px !important;
    padding: 0.35rem 0.6rem !important;
    font-size: 0.82rem !important;
    color: #223d66 !important;
    background: #fff !important;
}

.osi-lp-table tbody td {
    border-color: #edf2fb !important;
    color: #243f68;
    font-size: 0.88rem;
    padding: 0.7rem 0.82rem !important;
    vertical-align: middle;
}

.osi-lp-row {
    transition: background-color 0.14s ease;
    cursor: pointer;
}

.osi-lp-table tbody tr.osi-lp-row:hover {
    background: #f2f6ff !important;
}

.osi-lp-table tbody tr.ui-state-highlight {
    background: #dfe9fd !important;
    color: #122f5e !important;
}

.osi-lp-company-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.osi-lp-company-cell .material-symbols-outlined {
    font-size: 18px;
    color: #5f84c8;
}

.osi-lp-company {
    font-weight: 600;
    color: #1f3a68;
}

.osi-lp-loc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #eef3fd;
    color: #2d5ba8;
    font-weight: 700;
    border: 1px solid #d5e2f7;
}

.osi-lp-email {
    color: #3f6eba;
    font-size: 0.84rem;
}

.osi-lp-money {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #0f766e;
}

.osi-lp-date {
    color: #506487;
    font-size: 0.84rem;
}

.osi-lp-table .ui-paginator {
    background: #f9fbff !important;
    border-top: 1px solid #e4ecf8 !important;
    border-bottom: none !important;
    padding: 0.65rem 0.95rem !important;
    font-size: 0.85rem;
}

.osi-lp-table .ui-paginator .ui-paginator-page.ui-state-active {
    background: #2a62ba !important;
    border-color: #2a62ba !important;
    color: #fff !important;
    border-radius: 8px !important;
}

.osi-lp-table .ui-paginator .ui-paginator-page {
    border-radius: 8px !important;
    min-width: 1.95rem;
    height: 1.95rem;
}

.osi-lp-dialog .ui-dialog-titlebar {
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
    color: #203a61;
    border-bottom: 1px solid #dbe6f6;
}

.osi-lp-dialog-body {
    color: #284266;
}

@media (max-width: 1199.98px) {
    .osi-lp-filter-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .osi-lp-title {
        font-size: 1.45rem;
    }

    .osi-lp-filter-grid {
        grid-template-columns: 1fr;
    }

    .osi-lp-filter-actions .ui-button,
    .osi-lp-filter-actions .p-button {
        width: 100%;
    }
}

/* =============================================
   List Offices Page (osi-lo-*)
   ============================================= */

.osi-lo-page {
    max-width: 1480px;
    margin: 0 auto;
    font-family: "Inter", "Segoe UI", sans-serif;
}

.osi-lo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.osi-lo-header-main {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.osi-lo-header-icon {
    font-size: 2.3rem;
    color: #2f5f1e;
    background: linear-gradient(140deg, #ecf8e6 0%, #e3f2dc 100%);
    border-radius: 14px;
    padding: 0.52rem;
    line-height: 1;
    box-shadow: 0 8px 16px rgba(47, 95, 30, 0.15);
}

.osi-lo-title {
    margin: 0;
    font-family: "Jost", "Inter", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #172b4d;
}

.osi-lo-subtitle {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: #5a6b89;
    font-weight: 500;
}

.osi-lo-kpis {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.osi-lo-kpi {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid #d9e4f6;
    background: linear-gradient(180deg, #f9fbff 0%, #f1f6ff 100%);
    color: #27436f;
}

.osi-lo-kpi .material-symbols-outlined {
    font-size: 18px;
    color: #2f65b5;
}

.osi-lo-kpi.accent {
    border-color: #cce6cf;
    background: linear-gradient(180deg, #f4fbf5 0%, #ebf7ed 100%);
    color: #2d6a37;
}

.osi-lo-kpi.accent .material-symbols-outlined {
    color: #2f7d3f;
}

.osi-lo-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 0.95rem 1.1rem;
    margin-bottom: 0.9rem;
    border-radius: 14px;
    border: 1px solid #dce7f8;
    background: linear-gradient(135deg, #f9fbff 0%, #f3f7fe 100%);
}

.osi-lo-toolbar-text {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #304b74;
    font-size: 0.9rem;
    font-weight: 500;
}

.osi-lo-toolbar-text .material-symbols-outlined {
    font-size: 19px;
    color: #3e6cb8;
}

.osi-lo-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.osi-lo-btn-primary.ui-button,
.osi-lo-btn-primary.p-button {
    background: linear-gradient(135deg, #2f73d9 0%, #245fb8 100%) !important;
    border: 1px solid #1f53a0 !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    padding: 0.45rem 0.9rem !important;
    box-shadow: 0 8px 16px rgba(42, 97, 184, 0.2) !important;
}

.osi-lo-btn-primary.ui-button:hover,
.osi-lo-btn-primary.p-button:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.osi-lo-table-card {
    border: 1px solid #d8e3f4;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 28px rgba(17, 44, 91, 0.08);
}

.osi-lo-table.ui-datatable {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.osi-lo-table thead th {
    background: #f5f8fe !important;
    color: #30496f !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    font-size: 0.77rem !important;
    font-weight: 700 !important;
    border-color: #e3ebf8 !important;
    padding: 0.72rem 0.82rem !important;
    white-space: nowrap;
}

.osi-lo-table tbody td {
    border-color: #edf2fb !important;
    color: #243f68;
    font-size: 0.88rem;
    padding: 0.7rem 0.82rem !important;
    vertical-align: middle;
}

.osi-lo-row {
    transition: background-color 0.14s ease;
    cursor: pointer;
}

.osi-lo-table tbody tr.osi-lo-row:hover {
    background: #f2f6ff !important;
}

.osi-lo-table tbody tr.ui-state-highlight {
    background: #dfe9fd !important;
    color: #122f5e !important;
}

.osi-lo-office-num {
    font-weight: 700;
    color: #234a7a;
}

.osi-lo-money {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #0f766e;
}

.osi-lo-pics-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #eef3fd;
    color: #2d5ba8;
    font-weight: 700;
    font-size: 0.82rem;
    border: 1px solid #d5e2f7;
}

.osi-lo-table .ui-paginator {
    background: #f9fbff !important;
    border-top: 1px solid #e4ecf8 !important;
    border-bottom: none !important;
    padding: 0.65rem 0.95rem !important;
    font-size: 0.85rem;
}

.osi-lo-table .ui-paginator .ui-paginator-page.ui-state-active {
    background: #2a62ba !important;
    border-color: #2a62ba !important;
    color: #fff !important;
    border-radius: 8px !important;
}

.osi-lo-table .ui-paginator .ui-paginator-page {
    border-radius: 8px !important;
    min-width: 1.95rem;
    height: 1.95rem;
}

.osi-lo-dialog .ui-dialog-titlebar {
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
    color: #203a61;
    border-bottom: 1px solid #dbe6f6;
}

.osi-lo-dialog-actions {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

@media (max-width: 767.98px) {
    .osi-lo-title {
        font-size: 1.45rem;
    }

    .osi-lo-toolbar {
        align-items: flex-start;
    }

    .osi-lo-toolbar-actions {
        width: 100%;
    }

    .osi-lo-toolbar-actions .ui-button,
    .osi-lo-toolbar-actions .p-button {
        width: 100%;
    }
}

/* =============================================
   List Balance Page (osi-lb-*)
   ============================================= */

.osi-lb-page {
    max-width: 1480px;
    margin: 0 auto;
    font-family: "Inter", "Segoe UI", sans-serif;
}

.osi-lb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.osi-lb-header-main {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.osi-lb-header-icon {
    font-size: 2.3rem;
    color: #8c4e11;
    background: linear-gradient(140deg, #fff1e0 0%, #ffe7cc 100%);
    border-radius: 14px;
    padding: 0.52rem;
    line-height: 1;
    box-shadow: 0 8px 16px rgba(140, 78, 17, 0.15);
}

.osi-lb-title {
    margin: 0;
    font-family: "Jost", "Inter", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #172b4d;
}

.osi-lb-subtitle {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: #5a6b89;
    font-weight: 500;
}

.osi-lb-kpis {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.osi-lb-kpi {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid #d9e4f6;
    background: linear-gradient(180deg, #f9fbff 0%, #f1f6ff 100%);
    color: #27436f;
}

.osi-lb-kpi .material-symbols-outlined {
    font-size: 18px;
    color: #2f65b5;
}

.osi-lb-kpi.accent {
    border-color: #f0d7b6;
    background: linear-gradient(180deg, #fff8ef 0%, #fff2df 100%);
    color: #7b4d10;
}

.osi-lb-kpi.accent .material-symbols-outlined {
    color: #b06b16;
}

.osi-lb-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 0.95rem 1.1rem;
    margin-bottom: 0.9rem;
    border-radius: 14px;
    border: 1px solid #dce7f8;
    background: linear-gradient(135deg, #f9fbff 0%, #f3f7fe 100%);
}

.osi-lb-toolbar-text {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #304b74;
    font-size: 0.9rem;
    font-weight: 500;
}

.osi-lb-toolbar-text .material-symbols-outlined {
    font-size: 19px;
    color: #3e6cb8;
}

.osi-lb-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.osi-lb-btn-secondary.ui-button,
.osi-lb-btn-secondary.p-button {
    background: #fff !important;
    color: #335684 !important;
    border: 1px solid #c6d7f2 !important;
    border-radius: 10px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    padding: 0.45rem 0.85rem !important;
}

.osi-lb-table-card {
    border: 1px solid #d8e3f4;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 28px rgba(17, 44, 91, 0.08);
}

.osi-lb-table.ui-datatable {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.osi-lb-table thead th {
    background: #f5f8fe !important;
    color: #30496f !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    font-size: 0.77rem !important;
    font-weight: 700 !important;
    border-color: #e3ebf8 !important;
    padding: 0.72rem 0.82rem !important;
    white-space: nowrap;
}

.osi-lb-table thead th .ui-column-filter {
    width: 100%;
    margin-top: 0.45rem;
    border: 1px solid #cfddf1 !important;
    border-radius: 8px !important;
    padding: 0.35rem 0.6rem !important;
    font-size: 0.82rem !important;
    color: #223d66 !important;
    background: #fff !important;
}

.osi-lb-table tbody td {
    border-color: #edf2fb !important;
    color: #243f68;
    font-size: 0.88rem;
    padding: 0.7rem 0.82rem !important;
    vertical-align: middle;
}

.osi-lb-row {
    transition: background-color 0.14s ease;
    cursor: pointer;
}

.osi-lb-table tbody tr.osi-lb-row:hover {
    background: #f2f6ff !important;
}

.osi-lb-table tbody tr.ui-state-highlight {
    background: #dfe9fd !important;
    color: #122f5e !important;
}

.osi-lb-company-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.osi-lb-company-cell .material-symbols-outlined {
    font-size: 18px;
    color: #5f84c8;
}

.osi-lb-company {
    font-weight: 600;
    color: #1f3a68;
}

.osi-lb-money {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #0f766e;
}

.osi-lb-lastpay {
    gap: 0.1rem;
}

.osi-lb-date {
    color: #506487;
    font-size: 0.84rem;
}

.osi-lb-muted {
    color: #7b8aa5;
    font-size: 0.84rem;
}

.osi-lb-table .ui-paginator {
    background: #f9fbff !important;
    border-top: 1px solid #e4ecf8 !important;
    border-bottom: none !important;
    padding: 0.65rem 0.95rem !important;
    font-size: 0.85rem;
}

.osi-lb-table .ui-paginator .ui-paginator-page.ui-state-active {
    background: #2a62ba !important;
    border-color: #2a62ba !important;
    color: #fff !important;
    border-radius: 8px !important;
}

.osi-lb-table .ui-paginator .ui-paginator-page {
    border-radius: 8px !important;
    min-width: 1.95rem;
    height: 1.95rem;
}

@media (max-width: 767.98px) {
    .osi-lb-title {
        font-size: 1.45rem;
    }

    .osi-lb-toolbar {
        align-items: flex-start;
    }

    .osi-lb-toolbar-actions {
        width: 100%;
    }

    .osi-lb-toolbar-actions .ui-button,
    .osi-lb-toolbar-actions .p-button {
        width: 100%;
    }
}

/* Send Message Text Page */
.osi-msg-status-badge {
    margin-bottom: 1.5rem;
}

.osi-msg-status-icon {
    vertical-align: middle;
    font-size: 1.25rem;
}

.osi-msg-status-active {
    color: #4CAF50;
}

.osi-msg-status-inactive {
    color: #e53935;
}

.osi-msg-card {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    margin-bottom: 1.5rem;
}

.osi-msg-card-header {
    margin-bottom: 1rem;
}

.osi-msg-card-icon {
    vertical-align: middle;
    font-size: 1.3rem;
}

.osi-msg-option-row {
    row-gap: 1rem;
}

.osi-msg-option-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 6px;
    background: #f8f9fa;
}

.osi-msg-field-label {
    margin-bottom: 0.25rem;
}

.osi-msg-field-group {
    margin-bottom: 1rem;
}

.osi-msg-input-full {
    width: 100%;
}

.osi-msg-send-area {
    text-align: center;
    margin: 1.5rem 0;
}

.osi-msg-send-btn {
    font-size: 1rem;
    padding: 0.75rem 2.5rem;
}

.osi-msg-photo-cam {
    border-radius: 8px;
    overflow: hidden;
}

.osi-msg-capture-area {
    text-align: center;
    margin-top: 1rem;
}

.osi-msg-capture-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
}

/* Schedule page - dark green reservation blocks */
.fc-event,
.fc-event-dot,
.ui-schedule .fc-event {
    background-color: #2E7D32 !important;
    border-color: #1B5E20 !important;
    color: #FFFFFF !important;
    font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.fc-event .fc-title,
.fc-event .fc-time,
.fc-event .fc-content,
.fc-event span,
.fc-event a,
.ui-schedule .fc-event .fc-title,
.ui-schedule .fc-event .fc-time,
.ui-schedule .fc-event .fc-content,
.ui-schedule .fc-event span,
.ui-schedule .fc-event a {
    color: #FFFFFF !important;
    font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.fc-event:hover,
.ui-schedule .fc-event:hover {
    background-color: #388E3C !important;
}

/* Schedule page - upgraded navigation buttons */
.schedule-nav-bar {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.schedule-nav-bar .ui-button {
    border-radius: 8px !important;
    padding: 10px 22px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.schedule-nav-bar .ui-button:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18) !important;
    transform: translateY(-1px);
}

.schedule-nav-bar .ui-calendar {
    margin: 0 4px;
}

/* Reservation Details dialog */
.reservation-dialog .ui-dialog-titlebar {
    background: linear-gradient(135deg, #2E7D32, #43A047) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 12px 12px 0 0 !important;
    padding: 16px 20px !important;
    font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif !important;
}

.reservation-dialog .ui-dialog-titlebar .ui-dialog-title {
    color: #FFFFFF !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}

.reservation-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close {
    color: #FFFFFF !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    transition: background 0.2s ease !important;
}

.reservation-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close:hover {
    background: rgba(255, 255, 255, 0.35) !important;
}

.reservation-dialog .ui-dialog-content {
    background: #F9FAFB !important;
    padding: 24px !important;
    border-radius: 0 0 12px 12px !important;
}

.reservation-dialog {
    border-radius: 12px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2) !important;
    border: none !important;
    overflow: hidden;
}

/* Reservation form layout */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.reservation-row {
    display: flex;
    gap: 16px;
}

.reservation-half {
    flex: 1;
}

.reservation-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reservation-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reservation-icon {
    font-size: 18px !important;
    color: #2E7D32;
}

.reservation-hint {
    font-size: 11px;
    font-weight: 400;
    color: #9CA3AF;
    text-transform: none;
    letter-spacing: 0;
}

.reservation-room-value {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1F2937 !important;
    padding: 8px 12px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    display: inline-block;
}

.reservation-input-full,
.reservation-field .ui-autocomplete,
.reservation-field .ui-selectonemenu,
.reservation-field .ui-calendar,
.reservation-field .ui-inputtext,
.reservation-field .ui-inputtextarea {
    width: 100% !important;
    border-radius: 8px !important;
    border: 1px solid #D1D5DB !important;
    padding: 10px 12px !important;
    font-size: 14px !important;
    font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    background: #FFFFFF !important;
}

.reservation-field .ui-inputtext:focus,
.reservation-field .ui-inputtextarea:focus {
    border-color: #2E7D32 !important;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15) !important;
    outline: none !important;
}

/* Reservation action buttons */
.reservation-actions {
    display: flex;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid #E5E7EB;
    margin-top: 6px;
    flex-wrap: wrap;
}

.reservation-btn-save.ui-button {
    background: linear-gradient(135deg, #2E7D32, #43A047) !important;
    border: none !important;
    color: #FFFFFF !important;
    border-radius: 8px !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 6px rgba(46, 125, 50, 0.3) !important;
}

.reservation-btn-save.ui-button:hover {
    background: linear-gradient(135deg, #1B5E20, #2E7D32) !important;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4) !important;
    transform: translateY(-1px);
}

.reservation-btn-delete.ui-button {
    background: #FFFFFF !important;
    border: 2px solid #D1D5DB !important;
    color: #6B7280 !important;
    border-radius: 8px !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif !important;
    transition: all 0.2s ease !important;
}

.reservation-btn-delete.ui-button:hover {
    background: #FEF2F2 !important;
    border-color: #EF4444 !important;
    color: #DC2626 !important;
}

.reservation-btn-danger.ui-button {
    background: #FFFFFF !important;
    border: 2px solid #EF4444 !important;
    color: #DC2626 !important;
    border-radius: 8px !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif !important;
    transition: all 0.2s ease !important;
}

.reservation-btn-danger.ui-button:hover {
    background: #DC2626 !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3) !important;
}

.reservation-dialog-hidden-label {
    display: none;
}

/* ========================================
   Credit Card Single Dash - Modern Layout
   ======================================== */
.osi-cc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
}

.osi-cc-header .icon-shape {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(74, 144, 226, 0.1);
    flex-shrink: 0;
}

.osi-cc-header .icon-shape .material-symbols-outlined {
    font-size: 28px;
    color: var(--secondary-color);
}

.osi-cc-header-text h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.osi-cc-header-text small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.osi-cc-header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.osi-cc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.osi-cc-badge-auto-on {
    background: #E8F5E9;
    color: #2E7D32;
}

.osi-cc-badge-auto-off {
    background: #FFF3E0;
    color: #E65100;
}

.osi-cc-badge .material-symbols-outlined {
    font-size: 18px;
}

.osi-cc-section {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
}

.osi-cc-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.osi-cc-section-title .material-symbols-outlined {
    font-size: 20px;
    color: var(--secondary-color);
}

.osi-cc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}

.osi-cc-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.osi-cc-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.osi-cc-field .ui-inputfield {
    border-radius: 8px !important;
    border: 1.5px solid #ddd !important;
    padding: 0.6rem 0.75rem !important;
    font-size: 0.95rem !important;
    transition: border-color 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.osi-cc-field .ui-inputfield:focus {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1) !important;
}

.osi-cc-field-full {
    grid-column: 1 / -1;
}

.osi-cc-checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.osi-cc-checkbox-row label {
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
}

.osi-cc-actions {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.osi-cc-btn-run.ui-button {
    background: var(--secondary-color) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 0.75rem 2.5rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3) !important;
}

.osi-cc-btn-run.ui-button:hover {
    background: var(--secondary-hover) !important;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4) !important;
    transform: translateY(-1px);
}

.osi-cc-btn-auto.ui-button {
    background: #FF9800 !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    transition: all 0.2s ease !important;
}

.osi-cc-btn-auto.ui-button:hover {
    background: #F57C00 !important;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3) !important;
}

.osi-cc-confirm-grid {
    width: 100%;
}

.osi-cc-confirm-grid td {
    padding: 0.4rem 0.5rem;
}

.osi-cc-confirm-label {
    font-weight: 600;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.osi-cc-confirm-value {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.osi-cc-result-text {
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 0.5rem 0;
}

.osi-cc-client-link {
    color: inherit;
    text-decoration: underline;
}

.osi-cc-processing-wrap {
    text-align: center;
    padding: 1rem;
}

.osi-cc-processing-spinner {
    font-size: 2rem;
    color: var(--secondary-color);
}

.osi-cc-processing-msg {
    margin-top: 0.75rem;
    color: var(--text-medium);
}

.osi-cc-result-wrap {
    padding: 0.75rem;
}

.osi-cc-result-btn-wrap {
    margin-top: 1.25rem;
    text-align: center;
}

.osi-cc-settings-end {
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .osi-cc-form-grid {
        grid-template-columns: 1fr;
    }
    .osi-cc-header {
        flex-wrap: wrap;
    }
    .osi-cc-header-right {
        margin-left: 0;
        width: 100%;
    }
}
