:root {
    /* BRAND COLORS */
    --color-primary: #17264E;
    --color-secondary: #1E7780;
    --color-accent: #56EFC5;
    --color-coral: #FF886C;
    --color-neutral: #F5F0EB;
    --color-sand: #E8D7C5;
    /* SURFACE COLORS */
    --color-background: #F5F0EB;
    --color-surface: #ffffff;
    --color-border: #E8D7C5;
    /* STATUS COLORS */
    --color-success: #1E7780;
    --color-warning: #FF886C;
    --color-error: #dc3545;
    --color-info: #667eea;
    /* TEXT COLORS */
    --color-text-primary: #17264E;
    --color-text-secondary: #5a6c7a;
    --color-text-muted: #8491a3;
    /* BASIC COLORS */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray: #3a4248;
    /* Typography Variables */
    --font-headlines: 'Messina Modern', Georgia, 'Times New Roman', serif;
    --font-body: 'PPNeueMontreal', Arial, 'Helvetica Neue', sans-serif;
    --font-fallback: 'PPNeueMontreal', Arial, sans-serif;
    /* Typography Scale */
    --text-xs: 10px;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    /* Line Heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(23, 38, 78, 0.1);
    --shadow-md: 0 4px 20px rgba(23, 38, 78, 0.1);
    --shadow-lg: 0 8px 25px rgba(23, 38, 78, 0.15);
    /* Legacy Support */
    --body-font: var(--font-fallback) !important;
    /*Fluent UI Overrides*/
    --accent-fill-rest: var(--color-primary) !important;
    --accent-fill-active: var(--color-coral) !important;
    --accent-stroke-control-active: var(--color-primary) !important;
}

@font-face {
    font-family: 'PPNeueMontreal';
    src: url('../fonts/PPNeueMontreal-Regular.woff2') format('woff2'), url('../fonts/PPNeueMontreal-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'PPNeueMontreal';
    src: url('../fonts/PPNeueMontreal-Medium.woff2') format('woff2'), url('../fonts/PPNeueMontreal-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'PPNeueMontreal';
    src: url('../fonts/PPNeueMontreal-SemiBold.woff2') format('woff2'), url('../fonts/PPNeueMontreal-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'PPNeueMontreal';
    src: url('../fonts/PPNeueMontreal-Bold.woff2') format('woff2'), url('../fonts/PPNeueMontreal-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
body {        
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--color-text-primary);
    background-color: var(--color-background);
    font-feature-settings: 'kern'; /* turns on kerning */
    text-rendering: optimizeLegibility; /* emphasise on legibility when rendering, turns on ligatures and kerning */
    -webkit-font-smoothing: antialiased; /* apply font anti-aliasing for Webkit on OSX */
    -moz-osx-font-smoothing: grayscale; /* apply font anti-aliasing for Firefox on OSX */
    padding: 0;
    margin: 0;
    zoom: 95%;
    -moz-transform: none; /* Firefox Property */
    -moz-transform-origin: 1.0;
    -o-transform: none; /* Opera Property */
    -o-transform-origin: 0 0;
    -webkit-transform: none; /* Safari Property */
    -webkit-transform-origin: 0 0;
    transform: none; /* Standard Property */
    transform-origin: 0 0; /* Standard Property */
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .headline {
    font-family: var(--font-headlines);
    font-weight: 600;
    line-height: var(--leading-tight);
    color: var(--color-primary);
    margin: 0;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: var(--text-5xl); 
    font-weight: 700;
}

h2 { 
    font-size: var(--text-4xl); 
    font-weight: 600;
}

h3 { 
    font-size: var(--text-3xl); 
    font-weight: 600;
}

h4 { 
    font-size: var(--text-2xl); 
    font-weight: 500;
}

h5 { 
    font-size: var(--text-xl); 
    font-weight: 500;
}

h6 { 
    font-size: var(--text-lg); 
    font-weight: 500;
}
p {
    line-height: var(--leading-normal);
}

.subheading {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-text-secondary);
    font-size: var(--text-lg);
    line-height: var(--leading-normal);
}
.loader {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    background-color: var(--slds-g-color-neutral-100-opacity-75, var(--color-secondary, rgba(255, 255, 255, 0.75)));
    visibility: visible;
    opacity: 1;
    transition: opacity .2s ease, visibility 0s;
    transition-delay: 0s, .3s;
}

/* Base Components */
button, [type=button], [type=reset], [type=submit] {
    -webkit-appearance: button;
}

.button.button-primary {
    border-color: var(--color-primary);
    color: var(--color-text-primary);
}
.button.button-secondary {
    border-color: var(--color-secondary);
    color: var(--color-white);
}

.button.button-default {
    border-color: var(--accent-fill-active);
    color: var(--color-text-primary);
}

.button.button-sm {
    font-size: .875rem;
}

/*.button {
    border-width: 1px;
    border-color: var(--theme-control-border);
    background-color: var(--theme-body-background);
    color: var(--theme-text);
    text-align: center;
    cursor: pointer;
    border-radius: .25rem;
    justify-content: center;
    padding-block: calc(.375em - 1px);
    padding-inline: .75em;
    font-weight: 600;
    text-decoration: none;
}*/
.btn, .btn-sm {
    margin-block-end: .5rem;
    margin-inline-end: .5rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px !important;
    border: 2px solid var(--color-primary);
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--text-base);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.btn-primary {            
    background: rgba(23, 38, 78, 0.9);
    color: #ffffff;
    border: 1px solid rgba(23, 38, 78, 0.3);
}

.btn-primary:hover:not(:disabled) {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(23, 38, 78, 0.25), 0 1px 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.btn-primary:active:not(:disabled) {
    background: #0f1a39;
    border-color: #0f1a39;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transform: translateY(0px);
}

.btn-primary:disabled {
    background: rgba(255, 255, 255, 0.5);
    border-color: #d1d1d1;
    color: #c7c7c7;
    cursor: not-allowed;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px !important;
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-secondary);
    border: 1px solid rgba(30, 119, 128, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
    z-index: 1;
}

.btn-secondary:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: 0 3px 8px rgba(30, 119, 128, 0.25), 0 1px 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.btn-secondary:active {
    background: #ebebeb;
    border-color: #242424;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Default Button */
/*button, .btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
 
 
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 1rem;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-family: var(--font-body);
}

   button:hover, .btn:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        color: var(--color-white);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
*/
.btn-outline {
    display: inline-flex;
    align-items: center; 
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);   
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Navigation Link Button - from TopNavBar pattern */
.btn-nav-link {
    color: var(--color-primary);
    font-weight: 500;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin: 0 0.2rem;
    text-decoration: none;
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}



/* Delete/Danger Button Pattern - Fluent 2 Design */
.btn-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 12px;
    min-width: 32px;
    height: 32px;
    background: transparent;
    color: #424242;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
}

.btn-delete:hover:not(:disabled) {
    background: #f5f5f5;
    border-color: #424242;
    color: #242424;
}

.btn-delete:active:not(:disabled) {
    background: #ebebeb;
    border-color: #242424;
    color: #242424;
}

.btn-delete:disabled {
    background: transparent;
    border-color: #c7c7c7;
    color: #c7c7c7;
    cursor: not-allowed;
}

/* Small delete buttons (just icon) */
.btn-delete:has(svg:only-child) {
    width: 32px;
    min-width: 32px;
    padding: 0;
}


/* Step Navigation Component */
.step-navigation {
    padding: 16px 32px;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border);
}

.step-container {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.step-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

    .step-circle.active {
        background: var(--color-accent);
        color: var(--color-primary);
    }

.step-label {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    text-align: center;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.step-item:has(.step-circle.active) .step-label {
    color: var(--color-primary);
    font-weight: 600;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: var(--color-border);
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    margin: 0 8px;
    align-self: center;
}

    .step-connector.active {
        background: var(--color-accent);
    }

/* Accordion Component */
.accordion {
    border: 1px solid rgba(23, 38, 78, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: 0 3px 12px rgba(23, 38, 78, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}


.accordion-item {
    border-bottom: 1px solid var(--color-border);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background: var(--color-background);
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.accordion-header:hover {
    background: var(--color-sand);
}


.accordion-header.collapsed {
    border-bottom: 1px solid var(--color-border);
}

.accordion-toggle {
    width: 100%;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text-primary);
    cursor: pointer;
}

.accordion-toggle:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--color-accent);
}
.accordion .accordion-toggle {
    box-shadow: none;
    transform: none;
}

.accordion .accordion-toggle:hover {
    transform: none !important;
    box-shadow: none !important;
    background: none;
    border: none;
}


.accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: transform 0.2s ease;
}

.accordion-icon.expanded {
    transform: rotate(180deg);
}

.accordion-icon.collapsed {
    transform: rotate(0deg);
}

.accordion-content {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.collapsed {
    max-height: 0;
    border-top: none;
}

.accordion-content.expanded {
    max-height: 2000px;
}

.accordion-body {
    padding: 16px;
}

/* Form Elements */
.form-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 13px;
    background: var(--color-surface);
    color: var(--color-text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(30, 119, 128, 0.1);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

/* Form Validation */
.form-input-error {
    border-color: var(--color-error) !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.form-error-text {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--color-error);
    margin-top: 4px;
    display: block;
}

.form-helper-text {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.confirmed-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step3-content {
    position: relative;
}

.submission-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.submission-spinner {
    width: 48px;
    height: 48px;
}

.submission-overlay-text {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    margin: 0;
}

.submission-error-banner {
    background: #fde7e9;
    border: 1px solid #c41a2f;
    color: #a50e20;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    margin-bottom: 16px;
}

.submission-result {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.submission-status-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.submission-status-card.success {
    border-color: rgba(30, 119, 128, 0.35);
}

.submission-status-card.error {
    border-color: rgba(220, 53, 69, 0.35);
}

.submission-status-icon {
    display: flex;
    align-items: center;
    font-size: 32px;
    line-height: 1;
    color: var(--color-secondary);
}

.submission-status-icon.success {
    color: var(--color-success);
}

.submission-status-icon.error {
    color: var(--color-error);
}

.submission-status-body h3 {
    margin: 0 0 8px;
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text-primary);
}

.submission-status-body p {
    margin: 0 0 8px;
    color: var(--color-text-secondary);
    font-size: var(--text-base);
}

.submission-meta {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin: 0;
}

.submission-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Input suffix layout */
.input-suffix-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 100%;
}

.input-suffix-wrapper input {
    flex: 1 1 auto;
    padding-right: 44px;
    position: relative;
    z-index: 0;
}

.input-suffix {
    position: absolute;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    min-width: 28px;
    border-radius: 999px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 1px 2px rgba(23, 38, 78, 0.08);
}
/* Layout */


/* Main Container - Centered content area */
.main-container {  
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(23, 38, 78, 0.18), 0 8px 32px rgba(30, 119, 128, 0.12);
    backdrop-filter: blur(20px);
    overflow: hidden;
    position: relative;
}


/* Header Section - Gradient header pattern */
.header-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 32px 40px 24px;
    color: var(--color-white);
    position: relative;
}

.header-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.header-section h1 {
    color: var(--color-white);
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.header-section h2, .header-section h3, 
.header-section h4, .header-section h5, .header-section h6 {
    color: var(--color-white);
    margin: 0 0 var(--space-sm) 0;
}

.header-section p {
    color: var(--color-white);
    margin: 8px 0 0;
    opacity: 0.9;
    font-size: 16px;
    font-weight: 400;
}

/* Content Section - Main content area */
.content-section {
    padding: 24px 32px 32px;
    background: var(--color-surface);
}

/* Cards */
.card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.25s ease;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    margin-bottom: 0;
    border: none;
}

.card-header h1, .card-header h2, .card-header h3, 
.card-header h4, .card-header h5, .card-header h6 {
    color: var(--color-white);
    margin: 0;
    flex: 1;
}

.card-body {
    padding: var(--space-md);
}

/* Card Variants */
.card-simple {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-lg);
    border: 1px solid rgba(23, 38, 78, 0.06);
    transition: all 0.25s ease;
    margin: 0;
}

.card-simple:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

/* Icon Container - Gradient icon pattern */
.icon-container {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.icon-container.large {
    width: 48px;
    height: 48px;
}

.icon-container.small {
    width: 32px;
    height: 32px;
}

/* Tables */
.table-custom {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--color-surface);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(23, 38, 78, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    font-size: 14px;
    table-layout: auto;
}

.table-custom th {
    background: linear-gradient(180deg, rgba(245, 245, 245, 0.8) 0%, rgba(240, 240, 240, 0.9) 100%);
    padding: 8px 10px;
    text-align: left;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--color-text-primary);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(23, 38, 78, 0.06);
}

.table-custom td {
    padding: 6px 10px;
    border-bottom: 1px solid rgba(23, 38, 78, 0.04);
    font-family: var(--font-body);
    color: var(--color-text-primary);
    font-size: 12px;
    transition: background-color 0.15s ease;
}

.table-custom tr:last-child td {
    border-bottom: none;
}

.table-custom tr:hover td {
    background: rgba(30, 119, 128, 0.02);
}

/* Forms */

/* Form Row - Grid-based form layout */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-row.two-col {
    grid-template-columns: 1fr 1fr;
}

.form-row.three-col {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Form Group - Field container */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Action Areas - Button containers */
.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background: var(--color-background);
    border-top: 1px solid var(--color-border);
    gap: var(--space-sm);
}

.actions-left,
.actions-right {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.actions-center {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
}

/* Right-aligned actions - from VCConfirmations pattern */
.actions-right-only {
    text-align: right;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-border);
}

/* Space-between actions - from VCConfirmations pattern */
.actions-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-border);
    margin-top: var(--space-xl);
}

/* Section headers with actions */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.section-header h4 {
    margin: 0;
    color: var(--color-text-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

.section-header span {
    margin: 0;
    color: var(--color-text-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

/* Status Badges */
.status-badge {
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.status-badge.approved {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-badge.in-progress {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.status-badge.completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-badge.rejected {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* List Items */
.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: var(--color-background);
    border-radius: var(--radius-lg);
    transition: all 0.15s ease;
    margin: 0;
    cursor: pointer;
}

.list-item:hover {
    background: linear-gradient(135deg, rgba(30, 119, 128, 0.05) 0%, rgba(86, 239, 197, 0.05) 100%);
    transform: translateX(4px);
}

.list-item .title {
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
}

.list-item .subtitle {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    margin: 0;
}

.list-item .meta {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* Grid Layouts */
.grid-2 { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: var(--space-lg); 
}

.grid-3 { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: var(--space-lg); 
}

.grid-4 { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: var(--space-lg); 
}

.grid-auto { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: var(--space-lg); 
}

/* Search */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 0.5rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 25px;
    background-color: var(--color-surface);
    transition: all 0.3s ease;
    outline: none;
    font-family: var(--font-body);
}

.search-input:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 10px rgba(30, 119, 128, 0.2);
}

.search-btn {
    background: none;
    border: none;
    color: var(--color-primary) !important;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-btn:hover {
    background-color: rgba(30, 119, 128, 0.1);
    transform: scale(1.1);
}

/* CRITICAL: Ensure all interactive elements are clickable */
button,
input,
.form-input {
    pointer-events: auto !important;
    position: relative;
    z-index: 1;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.form-grid .form-group label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-primary);
    display: block;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

/* Content Sections */
.content-header {
    background: #f5f5f5;
    padding: 16px;
    border-bottom: 1px solid #e8d7c5;
}

.content-body {
    padding: 24px 16px;
}

.section-content {
    margin-bottom: 20px;
}

.section-content:last-child {
    margin-bottom: 0;
}

/* File Upload */
.file-upload-section {
    background: #f5f5f5;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e8d7c5;
}

.file-upload-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #242424;
    margin: 0 0 20px 0;
}

.file-upload-group {
    margin-bottom: 20px;
}

.file-upload-group:last-child {
    margin-bottom: 0;
}

.file-upload-label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #242424;
    margin-bottom: 8px;
}

.file-upload-input {
    width: 100%;
    padding: 8px 12px;
    border: 2px dashed #d1d1d1;
    border-radius: 6px;
    background: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    color: #424242;
    transition: border-color 0.2s cubic-bezier(0.2, 0, 0, 1);
}

.file-upload-input:focus {
    outline: none;
    border-color: var(--color-secondary);
    border-style: solid;
}

.file-success {
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    color: #107c10;
    font-weight: 500;
}

/* Approval Section */
.approval-section {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e8d7c5;
}

.approval-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #242424;
    margin: 0 0 16px 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-input {
    width: 16px;
    height: 16px;
    border: 2px solid #424242;
    border-radius: 2px;
    background: #ffffff;
    cursor: pointer;
}

.checkbox-input:checked {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: #242424;
    cursor: pointer;
}

/* Modal */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
}

.modal-container {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow: hidden;
    animation: modalSlideIn 0.2s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e8d7c5;
    background: #f5f5f5;
}

.modal-header h3 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #242424;
}

.modal-close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #666;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #e8d7c5;
    color: #242424;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.modal-description {
    margin: 0 0 16px 0;
    font-family: var(--font-body);
    font-size: 14px;
    color: #424242;
    line-height: 1.5;
}

.modal-note {
    margin: 0 0 12px 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #242424;
}

.modal-textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 2px solid #d1d1d1;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #242424;
    resize: vertical;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.modal-textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.modal-textarea::placeholder {
    color: #888;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid #e8d7c5;
    background: #f5f5f5;
}

.btn-danger {
    background: #c7414b;
    color: #ffffff;
    border: 1px solid #c7414b;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-danger:hover:not(:disabled) {
    background: #a23139;
    border-color: #a23139;
    box-shadow: 0 2px 4px rgba(199, 65, 75, 0.2);
}

.btn-danger:disabled {
    background: #d1d1d1;
    border-color: #d1d1d1;
    color: #888;
    cursor: not-allowed;
}

/*  Success Message */
.success-message {
    background: #dff6dd;
    border: 1px solid #107c10;
    color: #107c10;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
}

.btn-decline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px !important;
    min-width: auto;
    width: auto;
    border-radius: 8px;
    margin-block-end: 0;
    margin-inline-end: 0;
    background: rgba(255, 255, 255, 0.8);
    color: #c7414b;
    border: 1px solid rgba(199, 65, 75, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
    white-space: nowrap;
    text-overflow: visible;
    overflow: visible;
    z-index: 1;
}

.btn-decline:hover:not(:disabled) {
    background: #c7414b;
    border-color: #c7414b;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(199, 65, 75, 0.25), 0 1px 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.btn-decline:active:not(:disabled) {
    background: #a23139;
    border-color: #a23139;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transform: translateY(0px);
}

.btn-decline:disabled {
    background: rgba(255, 255, 255, 0.5);
    border-color: #d1d1d1;
    color: #c7c7c7;
    cursor: not-allowed;
}

.btn-decline svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.btn-confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    min-width: auto;
    width: auto;
    background: #2BA886;
    color: #ffffff;
    border: 2px solid #2BA886;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 6px rgba(43, 168, 134, 0.35);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
    white-space: nowrap;
    text-overflow: visible;
    overflow: visible;
    z-index: 1;
}

.btn-confirm:hover:not(:disabled) {
    background: #249872;
    border-color: #249872;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(43, 168, 134, 0.4), 0 2px 4px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-confirm:active:not(:disabled) {
    background: #1f8766;
    border-color: #1f8766;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transform: translateY(0px);
}

.btn-confirm:disabled {
    background: rgba(255, 255, 255, 0.5);
    border-color: #d1d1d1;
    color: #c7c7c7;
    cursor: not-allowed;
}

.btn-confirm svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Add Button - Neutral variant */
.btn-add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    min-width: auto;
    width: auto;
    background: rgba(255, 255, 255, 0.8);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
    white-space: nowrap;
    text-overflow: visible;
    overflow: visible;
    z-index: 1;
}

.btn-add:hover:not(:disabled) {
    background: #6b7280;
    border-color: #6b7280;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(107, 114, 128, 0.25), 0 1px 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.btn-add:active:not(:disabled) {
    background: #4b5563;
    border-color: #4b5563;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transform: translateY(0px);
}

.btn-add svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/*  Confirmed Badge */
.confirmed-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-success);
    color: #ffffff;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.confirmed-badge fluent-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
}

/*  Company Actions */
.company-actions {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border);
    background: var(--color-neutral);
    display: flex;
    justify-content: flex-end;
}

/*  Step 2 Container */
.step2-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/*  Company Card */
.company-card {
    margin-bottom: 40px;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
}

/*  Add Company Button */
.add-company-btn {
    align-self: flex-start;
    margin-top: 16px;
}

/*  Header Decline Button */
.header-decline-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 8px 16px !important;
    min-width: auto !important;
    width: auto !important;
    height: 32px !important;
    background: transparent !important;
    color: #c7414b !important;
    border: 1px solid #c7414b !important;
    border-radius: 6px !important;
    font-family: var(--font-body) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s cubic-bezier(0.2, 0, 0, 1) !important;
    white-space: nowrap !important;
    text-overflow: visible !important;
    overflow: visible !important;
}

.header-decline-btn:hover:not(:disabled) {
    background: #c7414b !important;
    color: #ffffff !important;
    box-shadow: 0 2px 4px rgba(199, 65, 75, 0.2) !important;
}

.header-decline-btn:active:not(:disabled) {
    background: #a23139 !important;
    border-color: #a23139 !important;
}

.header-decline-btn:disabled {
    background: transparent !important;
    border-color: #d1d1d1 !important;
    color: #c7c7c7 !important;
    cursor: not-allowed !important;
}

.header-decline-btn svg {
    width: 12px !important;
    height: 12px !important;
    flex-shrink: 0 !important;
}

/*  Table Actions */
.table-actions {
    width: 60px;
    text-align: center;
}

/* Utility Classes */
.space-xs { margin: var(--space-xs); }
.space-sm { margin: var(--space-sm); }
.space-md { margin: var(--space-md); }
.space-lg { margin: var(--space-lg); }
.space-xl { margin: var(--space-xl); }

.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-muted { color: var(--color-text-muted); }

.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-surface { background-color: var(--color-surface); }
.bg-background { background-color: var(--color-background); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
/* Responsive step navigation */
@media (max-width: 768px) {
    .step-navigation {
        padding: var(--space-sm);
    }

    .step-container {
        flex-direction: column;
        gap: var(--space-sm);
        max-width: none;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
        top: 0;
    }

    .step-label {
        max-width: none;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .step-label {
        font-size: var(--text-xs);
    }

    .step-circle {
        width: 28px;
        height: 28px;
        font-size: var(--text-xs);
    }
}

/* Responsive Utilities */
@media (min-width: 1400px) {
    .main-container {
        max-width: 90vw;
    }
}

@media (min-width: 1600px) {
    .main-container {
        max-width: 85vw;
    }
}

@media (max-width: 768px) {
    .main-wrapper {
        padding: var(--space-md) var(--space-sm);
    }
    
    .main-container {
        max-width: 98vw;
        margin: 0;
        border-radius: var(--radius-md);
    }
    
    .header-section {
        padding: var(--space-md);
    }
    
    .content-section {
        padding: var(--space-md);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-row.two-col,
    .form-row.three-col {
        grid-template-columns: 1fr;
    }
    
    .actions {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .actions-left,
    .actions-right {
        width: 100%;
        justify-content: center;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .grid-auto {
        grid-template-columns: 1fr;
    }
}

.full-size {
    display: flex;
    flex-grow: 1;
    overflow: hidden;
}

 


.region-page {
    flex-direction: column;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-noshrink {
    flex-shrink: 0;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.alert-outline-coloured {
    border: 1px dotted #c5c5c5 !important;
    border-radius: 10px;
    padding: 5px !important;
}

.alert-light {
    background-color: azure !important;
}


* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul, ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color:var(--color-primary);
}

    a:hover,
    a:focus,
    a:active {
        text-decoration: none !important;
    }

/* Color utility classes consolidated with standard .text- classes above */


.z-1 {
    z-index: 1;
}

.z-10 {
    z-index: 10;
}
.main {
    flex-direction: column !important;
    row-gap: 0 !important;
    display:flex;        
}
#body-content {    
    padding-top: 1rem;
}
.container {
    max-width: 90%;
    width:90%;
    margin: 0 auto;
} 
    .container .row > .col-md-12,
    .container .row > .col-md-11,
    .container .row > .col-md-10,
    .container .row > .col-md-9,
    .container .row > .col-md-8,
    .container .row > .col-md-7,
    .container .row > .col-md-6 {
        margin-left: auto;
        margin-right: auto;
    }
.gradient-bg {
    background: url(/img/appbackground.jpg) var(--bs-gray-200);
    background-blend-mode: color-burn;
    background-position: center center;
    background-size: cover;
    min-height: 100vh;
    position: relative;
}

.gradient-bg-purple {
    background: linear-gradient(118.61deg, rgb(165, 168, 255) 24.56%, rgb(216, 255, 253) 94.17%);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape1 {
    width: 120px;
    height: 120px;
    background: white;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.shape2 {
    width: 80px;
    height: 80px;
    background: white;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.shape3 {
    width: 150px;
    height: 150px;
    background: white;
    top: 40%;
    right: 70%;
    animation-delay: 4s;
}

figure.has-pattern-show {
    position: absolute;
    z-index: 2;
    margin: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
}

.video-background iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1, h2, h3 {
    letter-spacing: 0.02rem;
    margin: 0;
}

h4, h5, h6 {
    letter-spacing: 0.02rem;
    margin: 0;
}

h4.h4 {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.02rem;
}

p {
    margin: 0;
    margin-bottom: 20px;
}

    p:last-child {
        margin-bottom: 0;
    }

body h1, body .h1 {
    font-family: var(--body-font) !important;
    font-weight: 400;
    font-size: 2.5rem;
}

body h2 {
    font-family: var(--body-font) !important;
    font-weight: 400;
    font-size: 1.8rem;
}

body h3 {
    font-family: var(--body-font) !important;
    font-weight: 400;
    font-size: 1.5rem;
}

body h4 {
    font-family: var(--body-font) !important;
    font-size: 1.2rem;
}

body h5 {
    font-family: var(--body-font) !important;
    font-size: 1rem;
}

body h6 {
    font-family: var(--body-font) !important;
    font-size: .9rem;
    font-weight: bold;
}

.body-size-normal {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.03rem;
    font-weight: 300;
}

.body-size-large {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0.03rem;
    font-weight: 300;
}

header.btn-login {
    background-color: rgb(62, 212, 238);
}
.alignleft {
    float: left;
    margin-right: 1rem !important;
    max-width: var( --layout-content-size, 1080px );
}

.alignright {
    float: right;
    margin-left: 1rem !important;
    max-width: var( --layout-content-size, 1080px );
}

.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    max-width: var( --layout-content-size, 1080px );
}

.alignnone {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: var( --layout-content-size, 1080px );
}

.alignwide {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: var( --layout-wide-size, 1320px );
}

.alignfull {
    max-width: none;
}
img {
    height: revert-layer !important;
}
.image-background {
    width: 100%;
    background-repeat: no-repeat;
}

.object-cover {
    object-fit: cover;
}

.bg-wave {
    background:url(/img/wave_oblzae.jpg);
    background-size:cover;
    background-position:center center;
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-center {
    background-position: center center;
}

.bg-cover {
    background-size: cover;
}

figure.image-background {
    background-position: top center;
}

body .padding-top-extra-small {
    padding-top: 20px !important;
}

body .padding-bottom-extra-small {
    padding-bottom: 20px !important;
}

body .padding-top-small {
    padding-top: 70px !important;
}

body .padding-bottom-small {
    padding-bottom: 70px !important;
}

body .padding-bottom-medium {
    padding-bottom: 140px !important;
}

body .padding-top-medium {
    padding-top: 140px !important;
}

body .padding-top-large {
    padding-top: 210px !important;
}

body .padding-bottom-large {
    padding-bottom: 210px !important;
}

body .padding-top-extra-large {
    padding-top: 345px !important;
}

body .padding-bottom-extra-large {
    padding-bottom: 345px !important;
}

body figure {
    margin: 0;
}

section > .has-background-dim {
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
    opacity: 0.75;
}

section > .filter-overlay-apply {
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
    position: absolute;
    mix-blend-mode: color;
}

.w-80 {
    width: 80% !important;
}

.w-90 {
    width: 90% !important;
}

.w-60 {
    width: 60% !important;
}

.w-50 {
    width: 50% !important;
}

header {background-color:var(--color-secondary)!important}

/* FluentUI Component Overrides */
/* FluentButton Brand Color Overrides */
fluent-button[appearance="accent"],
.fluent-button[appearance="accent"] {
    --accent-fill-rest: #17264E !important;
    --accent-fill-hover: #1E7780 !important;
    --accent-fill-active: #17264E !important;
    --accent-foreground-rest: #ffffff !important;
    background: #17264E !important;
    color: #ffffff !important;
}

/* FluentSwitch Brand Color Overrides */
fluent-switch {
    --accent-fill-rest: var(--color-secondary) !important;
    --accent-fill-hover: var(--color-secondary) !important;
    --accent-fill-active: var(--color-secondary) !important;
}

fluent-button[appearance="accent"]:hover,
.fluent-button[appearance="accent"]:hover {
    background: #1E7780 !important;
    color: #ffffff !important;
}

fluent-button[appearance="neutral"],
.fluent-button[appearance="neutral"] {
    --neutral-fill-rest: rgba(255, 255, 255, 0.9) !important;
    --neutral-fill-hover: #1E7780 !important;
    --neutral-fill-active: #17264E !important;
    --neutral-foreground-rest: #17264E !important;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #17264E !important;
    border: 1px solid rgba(23, 38, 78, 0.2) !important;
}

fluent-button[appearance="neutral"]:hover,
.fluent-button[appearance="neutral"]:hover {
    background: #1E7780 !important;
    color: #ffffff !important;
}

@keyframes goDown {
    0% {
        top: -150px;
    }

    100% {
        transform: translateY(150px);
    }
}

@keyframes goDown1 {
    0% {
        top: -118px;
    }

    100% {
        transform: translateY(118px);
    }
}

a:hover {
    color: #4b8dcb
}
/* Text */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: rgba(2, 98, 151, 1);
    letter-spacing: -.1px
}

h1 {
    font-size: 2.8rem;
    line-height: 1em
}

h2 {
    font-size: 2.4rem;
    line-height: 1.2em;
    font-weight: 200
}

    h2 a:hover {
        text-decoration: none
    }

h3 {
    font-size: 2.4rem;
    line-height: 1.4em;
    font-weight: 500
}

.h3 {
    font-size: 1.8rem
}

h4, h5, h6 {
    font-weight: 500
}

h1, h2 {
    margin-bottom: 20px;
}

    h1:after, h2:after, footer h6:after, .date:after {
        background: #4b8dcb;
        width: 120px;
        height: 1px;
        content: '';
        display: block;
        margin-top: 25px;
    }

    h2.full-border:after {
        width: 100%
    }

footer h6:after {
    margin-top: 15px;
}

.date:after {
    margin-top: 5px;
}

.date {
    text-transform: uppercase
}

.text-center h1:after, .text-center h2:after {
    background: #4b8dcb;
    width: 120px;
    height: 1px;
    content: '';
    display: block;
    margin: 0px auto;
    margin-top: 25px;
}

.u-none:after, .text-center .u-none:after {
    height: 0
}

h3 {
    font-size: 1.75rem
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
    cursor: pointer
}

.text-light h1, .text-light h2, .text-light h3, .text-light h4, .text-light h5, .text-light h6 {
    color: #fff
}

.subheading {
    color: #5b6771;
}

.text-light h5.subheading {
    font-weight: 300;
    margin-top: 1rem
}

p, ul, ol, .btn {
    -webkit-font-smoothing: antialiased;
    font-size: 1.1rem;
    font-weight: 400
}

hr {
    border-top: 1px solid #4b8dcb
}
/* Colors */
.bg-light-gradient {
    background: rgb(233, 236, 239);
    background: linear-gradient(180deg, rgba(233, 236, 239, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.bg-flag {
    background-image: url("../img/wave-element.png");
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat
}

/* -----------     end of Sensiba based styles  ------------- */

.account-information-container {
    height: max-content;
}

    .account-information-container .project-list {
        height: fit-content
    }

.k-grid {
    font-size: 13px !important
}

.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    height: 4rem !important;
    width: 4rem !important;
    color: #fff;
    font-family: var(--PPNeueMontreal-font);
}

.avatar-sm {
    font-size: 16px !important;
    height: 2rem !important;
    width: 2rem !important;
}

.avatar-md {
    font-size: 18px !important;
    height: 3rem !important;
    width: 3rem !important;
}

.avatar::after {
    content: attr(data-label);
}

.avatar-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2em !important;
    height: 6rem !important;
    width: 6rem !important;
    color: #fff;
    font-family: var(--PPNeueMontreal-font);
}

.font-1x {
    font-size-adjust: 1 !important;
}

.font-2x {
    font-size-adjust: 1.1 !important;
}

.font-4x {
    font-size-adjust: 1.3 !important;
}
/* ---------------- */

#scrollbox {
    overflow: scroll;
    overflow-x: hidden; /* Hide horizontal scrollbar */
    overflow-y: scroll; /* Add vertical scrollbar */
    height: 50vh;
}

.sent, .recieved {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

    .sent p {
        background: #42a5f5;
        color: #fff !important;
        border-radius: 10px 10px 3px 10px;
        display: block;
        max-width: 75%;
        padding: 7px 13px 7px 13px;
    }

.received {
    max-width: 90%;
    display: flex;
}

    .received pre {
        background: #f1f1f1;
        color: #000 !important;
        border-radius: 10px 10px 10px 3px;
        display: flex;
        max-width: 80%;
        text-wrap: balance;
        flex-wrap: wrap;
        padding: 7px 13px 7px 13px;
    }

    .received pre {
        font-family: var(--PPNeueMontreal-font) !important;
    }

._chatRoot {
    flex: 1;
    display: flex;
    gap: 5px;
}

._chatInput {
    position: sticky;
    flex: 0 0 100px;
    padding: 12px 24px 24px;
    width: calc(100% - 100px);
    max-width: 1028px;
    margin-bottom: 50px;
    margin-top: 8px;
}

._chatContainer {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: radial-gradient(108.78% 108.78% at 50.02% 19.78%,#FFFFFF 57.29%,#EEF6FE 100%);
    box-shadow: 0 2px 4px #00000024, 0 0 2px #0000001f;
    border-radius: 10px;
    overflow-y: auto;
}

._chatInput {
    position: sticky;
    flex: 0 0 100px;
    padding: 12px 24px 24px;
    width: calc(100% - 100px);
    max-width: 60%;
    margin-bottom: 20px;
    margin-top: 8px;
}

.f1w7gpdv {
    display: inline;
    width: 2rem;
    height: 2rem;
}

.button-copy {
    cursor: pointer
}

/* Chatbot styles */
.chatBotRoot {
    position: relative;
    display: flex;
    gap: 10px;
    width: 100%;
    transition-property: width, max-width;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0, 0, 0, 1);
}

.outside-left-container {
    position: relative;
    align-self: flex-end;
    transition-property: opacity;
    transition-duration: 80ms;
    transition-delay: 200ms;
    transition-timing-function: cubic-bezier(0, 0, 0, 1);
}

    .outside-left-container .button-compose-wrapper {
        transition-property: opacity, transform;
        transition-duration: 200ms;
        transition-timing-function: cubic-bezier(0, 0, 0, 1);
    }

.chatBot-container {
    display: initial;
    width: 100%;
}

.chatBot-SendButton {
    position: absolute;
    justify-content: end;
    height: 3rem;
    bottom: 1.2rem;
    padding-inline: 0px;
    margin-left: -3rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.bottom-left-controls, .bottom-right-controls {
    display: flex;
    align-items: center;
}

.footnote-label {
    color: #1274AC;
}

.form-background {
    background-color: lightgrey;
    padding: 6px;
    border: 1px solid black;
}

.navmenu-icon {
    display: none;
}

/* layout classes */
/*.body-content {
    align-self: stretch;
    height: calc(100dvh - 86px) !important;
    display: flex;
    margin: 0 !important;
    padding:0 !important;
}*/

.content {
    padding: 0.5rem 0;
    align-self: stretch !important;
    width: 100%;
}

.manage {
    width: 100dvw;
}

.footer {
    display: flex !important;
    flex-direction: row !important;
    background: var(--neutral-layer-4);
    color: var(--neutral-foreground-rest) !important;   
    width:100%;    
    min-height:40px;
    max-height:40px;
    justify-content:flex-end;
    align-items:flex-end;
}
    .footer p {
        font-size: .9em;
    }
    .footer a {
        color: var(--color-sand);
        text-decoration: none;
        font-size: .9em;
    }

        .footer a:focus {
            outline: 1px dashed;
            outline-offset: 3px;
        }

        .footer a:hover {
            text-decoration: underline;
        }

.alert {
    border: 1px dashed var(--accent-fill-rest);
    padding: 5px;
}


#blazor-error-ui {
    display: none !important;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);    
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    margin: 20px 0;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::before {
        content: "An error has occurred. "
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

code {
    color: #c02d76;
}


@media screen and (max-width: 1366px) {
    .latest-news-events-insights .latest-resources-inner {
        padding-left: 15px !important;
    }

    .latest-news-events-insights .section-header-outer {
        width: 100%;
        padding: 65px 20px 56px 60px;
    }
}

@media screen and (max-width: 1250px) {
    .header-navigation-outer .main-navigation > .d-flex.align-items-center {
        margin: 0 20px;
    }
}

@media screen and (max-width: 1199px) {
    .header-navigation-outer .navigation-menu .menu > li:not(:last-child) {
        margin-right: 10px;
    }

    .header-navigation-outer #primary-menu > li > a {
        padding-right: 20px;
        font-size: 14px;
    }

    .header-navigation-outer .main-navigation a.ssf-element-button {
        padding: 9px 20px;
    }

    .header-navigation-outer #primary-menu > li.menu-item-has-children > a:after {
        right: 1px;
        top: 14px;
        height: 12px;
        width: 12px;
        background-position: top 5px left 3px;
    }

    .footer {
        position: relative;
        margin-top: -60px;
        min-height: 60px;
        clear: both;
        padding: 20px 0;
        bottom: 0;
        max-height: 6rem;
        z-index: 999;
    }

    .footer-menu a {
        font-size: 14px !important;
        line-height: 14px !important;
    }

    .footer-menu .sub-menu li:not(:last-child) {
        margin-bottom: 12px !important;
    }

    .footer-menu.menu {
        grid-column-gap: 40px !important;
    }

    .body-size-large {
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0.02rem;
    }

    body .padding-top-extra-small {
        padding-top: 20px !important;
    }

    body .padding-bottom-extra-small {
        padding-bottom: 20px !important;
    }

    body .padding-top-small {
        padding-top: 30px !important;
    }

    body .padding-bottom-small {
        padding-bottom: 30px !important;
    }

    body .padding-bottom-medium {
        padding-bottom: 70px !important;
    }

    body .padding-top-medium {
        padding-top: 70px !important;
    }

    body .padding-top-large {
        padding-top: 140px !important;
    }

    body .padding-bottom-large {
        padding-bottom: 140px !important;
    }

    body .padding-top-extra-large {
        padding-top: 200px !important;
    }

    body .padding-bottom-extra-large {
        padding-bottom: 200px !important;
    }

    body h1 {
        font-size: 60px;
        line-height: 70px;
    }

    body h2 {
        font-size: 40px;
        line-height: 50px;
    }

    body h3 {
        font-size: 30px;
        line-height: 40px;
    }

    body h4 {
        font-size: 24px;
        line-height: 30px;
    }

    .ssf-element-tagline {
        font-size: 13px;
        line-height: 22px;
        letter-spacing: 0.02rem;
        margin: 0 0 5px;
    }

    body h4.h4 {
        font-size: 18px;
        line-height: 26px;
    }

    .ssf-element-button {
        height: 44px;
        padding: 10px 25px;
        font-size: 13px;
        letter-spacing: 0.02rem;
    }

        .ssf-element-button svg {
            margin-left: 10px;
        }

    .breadcrump-inner {
        margin: 0 0 30px 0;
    }

    .body-size-normal {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-menu > li > a {
        font-size: 22px !important;
        line-height: 17px !important;
    }

    .ssf-module-section-header .ssf-element-content p {
        font-size: 18px;
        line-height: 28px;
        margin: 0 0 30px;
        letter-spacing: 0.01rem;
    }

    .single-news-outer {
        padding: 70px 0 0;
    }

        .single-news-outer .single-news-inner h1.entry-title {
            font-size: 40px;
            line-height: 50px;
            margin: 0 0 20px;
        }

        .single-news-outer .single-news-inner .entry-meta.blog-detail {
            margin: 40px 0 0;
        }

            .single-news-outer .single-news-inner .entry-meta.blog-detail .date-author {
                font-size: 13px;
                line-height: 22px;
                margin: 0 0 30px;
            }

        .single-news-outer .single-news-inner > .post-thumbnail {
            margin: 0 0 30px;
        }

    .single-news-text > .entry-content > span,
    .single-news-text > .entry-content > figure {
        max-width: 900px;
        margin: 0 auto 0 0;
        padding: 0 15px 15px;
    }

    .single-news-text > .entry-content > :last-child {
        margin-bottom: 48px;
    }

    blockquote.wp-block-quote {
        max-width: 900px;
        margin: 0 auto 0 15px !important;
        padding: 10px 25px;
        border-left: solid 4px #FF886C;
        font-size: 18px;
        line-height: 28px;
    }

    .single-news-text .entry-content > .wp-block-gallery {
        max-width: 869px;
        margin: 40px auto 40px 15px;
        flex-wrap: wrap;
        padding: 0 15px 0 0;
    }

        .single-news-text .entry-content > .wp-block-gallery .wp-block-image {
            height: 320px;
        }

    .single-news-text .entry-content > .wp-block-embed.is-type-video {
        max-width: 869px;
        margin: 0 auto 30px 15px;
        padding: 0 15px 0 0;
    }

        .single-news-text .entry-content > .wp-block-embed.is-type-video iframe {
            height: 400px;
            vertical-align: middle;
        }

    .single-news-text .entry-content > .wp-block-columns {
        max-width: 870px;
        margin: 30px auto 50px 15px;
        padding-right: 15px;
    }

        .single-news-text .entry-content > .wp-block-columns .wp-block-column .wp-block-post-navigation-link a {
            font-size: 14px;
        }

        .single-news-text .entry-content > .wp-block-columns .wp-block-column .post-navigation-link-previous a:before {
            height: 38px;
            width: 38px;
            margin: 0 10px 0 0;
            background-size: contain;
        }

    .single-news-text span.wp-block-list ul li, .single-news-text span.wp-block-list ol li {
        margin: 0 0 20px;
        font-size: 16px;
        line-height: 26px;
    }

    .single-news-outer .single-news-inner .entry-meta.blog-detail .date-author img {
        width: 47px;
        height: 47px;
    }

    .single-news-text > .entry-content > span h4 {
        font-size: 14px;
        line-height: 24px;
    }

    .author-devteam-sec {
        padding: 70px 0;
    }

        .author-devteam-sec .pagination-set {
            padding: 0;
        }

    .auhor-information h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .auhor-information p.h1 {
        font-size: 18px;
        line-height: 28px;
    }

    .auhor-information-outer .auhor-information-right {
        padding: 34px 0 0 35px;
    }

    .auhor-information-outer {
        margin: 30px 0 60px;
    }

    .single-news-outer.single-resource-page {
        padding: 70px 0 250px;
    }

    .single-resource-page .single-news-inner .single-resource-profile {
        margin: 0 0 40px;
    }

        .single-resource-page .single-news-inner .single-resource-profile .intro {
            padding-left: 30px;
        }

            .single-resource-page .single-news-inner .single-resource-profile .intro p {
                font-size: 18px;
                line-height: 28px;
            }

    .single-resource-page .single-news-inner > .ssf-element-heading {
        margin: 20px 0 15px;
    }

    ul.what-youll-learn h3 {
        margin: 0 0 20px;
    }

    ul.what-youll-learn {
        padding: 30px 23px;
        margin: 40px 0;
    }

        ul.what-youll-learn li {
            padding-left: 30px;
            font-size: 18px;
            line-height: 28px;
        }

            ul.what-youll-learn li:before {
                top: 10px;
            }

    .single-news-outer.single-resource-page p {
        font-size: 16px;
        line-height: 26px;
    }
}

@media screen and (max-width: 991px) {
    .breadcrumbs.search-breadcrumb {
        padding: 0 1.5rem 0 27px;
    }

    .search-page-head {
        padding-left: 15px;
    }

    .single-news-outer.webinar-page .single-news-inner {
        padding-right: 0;
        padding-bottom: 30px;
    }

    .post-result-data {
        padding: 30px 15px;
    }

    .search-page-head h1 {
        font-size: 50px;
    }

    .search-page {
        padding: 70px 0;
    }

    .search-page-head label {
        font-size: 20px;
    }

    body h5 {
        font-size: 16px;
        line-height: 24px;
    }

    .latest-news-events-insights .section-header-outer {
        padding: 50px 15px 50px 40px;
    }

    .news-events-insights-grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-row-gap: 40px;
    }

    .main-navigation.navigation-menu {
        display: block !important;
    }

        .main-navigation.navigation-menu ul#primary-menu {
            display: none !important;
        }

    .header-navigation-outer .main-navigation > .d-flex.align-items-center {
        display: none !important;
    }

    .search-icon.search-desktop {
        margin: 0 68px 0 0;
    }

    .footer-menu.menu {
        grid-template-columns: 1fr 1fr 1fr !important;
        grid-gap: 50px;
    }

    .ssf-module-section-header {
        width: 348px;
        padding-right: 40px;
    }

    .section-header-outer .ssf-module-section-header ~ .section-header-after-sec {
        width: calc(100% - 348px);
    }

    .slider-arrows .arrowbtn svg {
        width: 40px;
    }

    .slider-arrows .prev {
        margin-right: 10px;
    }

    .ssf-module-section-header .section-header-button {
        max-width: 300px;
        width: 100%;
        padding-left: 30px;
        padding-right: 15px;
    }

    .box .box-text-links {
        padding: 20px;
    }

    .list-cards-outer {
        grid-template-columns: 1fr 1fr 1fr;
        grid-row-gap: 40px;
    }
}

@media screen and (max-width: 767px) {
    .single-resource-profile.podcast-re .post-thumbnail {
        width: 100%;
    }

    .single-resource-profile.podcast-re .intro {
        width: 100%;
        padding-left: 00px;
    }

    .type-leader .auhor-information-outer .auhor-information-right {
        padding: 0 0 0 30px;
    }

        .type-leader .auhor-information-outer .auhor-information-right h4 {
            font-size: 18px;
            line-height: 28px;
        }

    .type-leader .auhor-information-text-inner blockquote.wp-block-quote {
        padding-right: 0;
        margin-left: 0 !important;
        text-align: left;
    }

    .leader-main-sec .auhor-information h1 {
        font-size: 35px;
        line-height: 45px;
        margin: 20px 0 0;
    }

    .auhor-information-text-inner h2 {
        margin: 40px 0 20px;
        color: #16264E;
    }

    .auhor-information-text-inner blockquote.wp-block-quote {
        margin-top: 40px;
    }

    .news-events-insights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-menu.menu {
        grid-template-columns: 1fr 1fr !important;
        grid-gap: 20px;
        grid-row-gap: 40px;
    }

    .site-info-middle .footer-contact {
        padding: 30px 15px !important;
        width: 100%;
    }

    .site-info-middle {
        padding: 30px 0 !important;
        flex-wrap: wrap;
        justify-content: center !important;
    }

        .site-info-middle .ssf-module.ssf-module-buttons-group.common-btn {
            justify-content: center;
        }

    .site-info {
        justify-content: center;
        flex-wrap: wrap;
    }

        .site-info .footer_copyrigt_logos {
            align-items: center;
            justify-content: center;
        }

        .site-info > .font-size-small {
            width: 100% !important;
            padding: 30px 0 0 !important;
        }


        .site-info .footer_copyrigt_logos {
            width: 100%;
        }

    body .padding-top-large {
        padding-top: 80px !important;
    }

    body .padding-bottom-large {
        padding-bottom: 80px !important;
    }

    body .padding-top-extra-large {
        padding-top: 90px !important;
    }

    body .padding-bottom-extra-large {
        padding-bottom: 90px !important;
    }

    body h1 {
        font-size: 40px;
        line-height: 50px;
    }

    body h2 {
        font-size: 30px;
        line-height: 40px;
    }

    body h3 {
        font-size: 24px;
        line-height: 34px;
    }

    body h4 {
        font-size: 22px;
        line-height: 28px;
    }

    .gform_wrapper form .gform_body .gform_fields .gfield input, .gform_wrapper form .gform_body .gform_fields .gfield select {
        padding: 0 0 10px;
    }


    .box .box-text-links .box-text h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    footer.site-footer {
        padding: 70px 0 10px 20px;
    }

    .breadcrump-inner, .breadcrump-inner li, .breadcrump-inner span {
        font-size: 12px;
        line-height: 17px;
        gap: 8px;
        padding: 0 !important;
    }

    .pagination-set {
        padding: 30px 0;
    }

    .single-news-text .entry-content > .wp-block-gallery .wp-block-image {
        height: 200px;
    }

    .single-news-text .entry-content > .wp-block-embed.is-type-video iframe {
        height: 240px;
    }

    .auhor-information-outer .auhor-information-left {
        width: 250px;
    }

    .auhor-information-outer .auhor-information-right {
        width: calc(100% - 250px);
    }

    .auhor-information-outer .auhor-information-left figure.img {
        width: 100%;
        height: 250px;
    }

    .list-cards-outer {
        grid-template-columns: 1fr 1fr;
    }

    .form-subscribe-inner .section-header-outer form .gform_footer input {
        padding: 6px 40px;
        min-width: 220px;
    }

    .single-resource-page .single-news-inner .single-resource-profile .post-thumbnail {
        width: 240px;
        height: 240px;
    }

    .single-resource-page .single-news-inner .single-resource-profile .intro {
        width: calc(100% - 240px);
        padding-left: 20px;
    }

    .single-resource-page .single-news-inner .single-resource-profile {
        align-items: flex-start;
    }
}

@media screen and (max-width: 575px) {
    .addtoany {
        display: none;
    }

    .type-leader .auhor-information-outer .auhor-information-right {
        padding: 0;
    }

    .auhor-information-outer .auhor-information-left figure.img {
        width: 100%;
        max-width: 250px;
        margin: auto;
    }

    .auhor-information-outer .auhor-information-left {
        width: 100%;
        margin: 0 auto;
    }

    .auhor-information-outer .auhor-information-right {
        width: 100%;
        text-align: center;
        padding-left: 0;
    }

    .single-resource-page .single-news-inner .single-resource-profile .post-thumbnail {
        width: 100%;
    }

    .single-resource-page .single-news-inner .single-resource-profile .intro {
        width: 100%;
        padding: 20px 0 0;
    }
}

@media screen and (max-width: 510px) {
    .site-info > .font-size-small span.footer-copyright-text {
        display: block;
    }

    .site-info > .font-size-small span.footer-copyright-links span:first-child {
        display: none;
    }

    .site-info > .font-size-small a {
        color: #fff;
    }
}

@media screen and (max-width: 480px) {
    .list-cards-outer {
        grid-template-columns: 1fr;
    }

    .news-events-insights-grid {
        grid-template-columns: 1fr;
    }

    .latest-news-events-insights .section-header-outer {
        padding: 50px 15px 50px 20px;
    }
}

@media screen and (max-width: 360px) {
    .site-info > .font-size-small {
        font-size: 11px !important;
    }
}
@media (max-width: 600px) {
    .header-gutters {
        margin: 0.5rem 3rem 0.5rem 1.5rem !important;
    }

    [dir="rtl"] .header-gutters {
        margin: 0.5rem 1.5rem 0.5rem 3rem !important;
    }

    .main {
        flex-direction: column !important;
        row-gap: 0 !important;
    }

    nav.sitenav {
        width: 100%;
        height: 100%;
    }

    #main-menu {
        width: 100% !important;
    }

        #main-menu > div:first-child:is(.expander) {
            display: none;
        }

    .navmenu {
        width: 100%;
    }

    #navmenu-toggle {
        appearance: none;
    }

        #navmenu-toggle ~ nav {
            display: none;
        }

        #navmenu-toggle:checked ~ nav {
            display: block;
        }

    .navmenu-icon {
        cursor: pointer;
        z-index: 10;
        display: block;
        position: absolute;
        top: 15px;
        left: unset;
        right: 20px;
        width: 20px;
        height: 20px;
        border: none;
    }

    [dir="rtl"] .navmenu-icon {
        left: 20px;
        right: unset;
    }

    /* VC Confirmations Styles */
    /*.vc-company-actions {
        padding: 1.5rem;
        border-top: 1px solid var(--color-border);
        background: var(--color-neutral);
        display: flex;
        justify-content: flex-end;
    }

    .vc-confirmed-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: var(--color-success);
        color: #ffffff;
        border-radius: 6px;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 14px;
    }*/

    .btn-primary:disabled {
        background: #ccc;
        border-color: #ccc;
        color: #666;
        cursor: not-allowed;
        box-shadow: none;
    }

}



/* Step 3 - Final Review Styles */
.final-review-container {
    max-width: 800px;
    margin: 0 auto;
}

.review-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.review-header h3 {
    margin: 0 0 var(--space-sm) 0;
    font-family: var(--font-headlines);
    font-size: var(--text-2xl);
    color: var(--color-primary);
}

.review-header p {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
}

.companies-review-list {
    display: grid;
    gap: var(--space-md);
   
}

.company-review-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: all 0.2s ease;
}

.company-review-card:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-sm);
}

.company-name {
    margin: 0 0 var(--space-md) 0;
    font-family: var(--font-headlines);
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--color-primary);
}

.missing-data {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-warning);
    font-weight: 500;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: var(--text-base);
}

.contact-icon {
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.contact-label {
    min-width: 80px;
    font-weight: 500;
    color: var(--color-text-secondary);
    flex-shrink: 0;
}

.contact-value {
    color: var(--color-text-primary);
    flex: 1;
}

.contact-value.missing {
    color: var(--color-error);
    font-style: italic;
}

/* ===== DASHBOARD TASK CARDS ===== */
.task-card {
    margin-bottom: var(--space-lg) !important;
    border-left: 4px solid var(--color-secondary) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 240, 235, 0.3) 100%) !important;
    position: relative;
    overflow: hidden;
}

.task-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(86, 239, 197, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.task-card:hover {
    border-left-color: var(--color-accent) !important;
    box-shadow: var(--shadow-lg) !important;
}

.task-priority {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-secondary);
    box-shadow: 0 0 8px rgba(30, 119, 128, 0.4);
}

.task-priority.high {
    background: var(--color-coral);
    box-shadow: 0 0 8px rgba(255, 136, 108, 0.4);
}

.task-priority.completed {
    background: var(--color-success);
    box-shadow: 0 0 8px rgba(30, 119, 128, 0.4);
}

.task-content {
    position: relative;
    z-index: 1;
}

.task-title {
    font-family: var(--font-headlines);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 var(--space-sm) 0;
    letter-spacing: -0.01em;
}

.task-description {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    margin: 0 0 var(--space-md) 0;
    line-height: var(--leading-relaxed);
}

.task-meta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.task-assignee,
.task-due,
.task-completed {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.task-assignee::before {
    content: '👤';
    font-size: var(--text-sm);
}

.task-due::before {
    content: '📅';
    font-size: var(--text-sm);
}

.task-completed::before {
    content: '✓';
    font-size: var(--text-sm);
    color: var(--color-success);
}

.task-actions {
    margin-top: var(--space-md);
}

.task-actions .btn-secondary {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.task-actions .btn-secondary:hover {
    background: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(23, 38, 78, 0.2);
}
