/* ==========================================
   MIFID COMPLETE STYLES
   Unified CSS for all MiFID pages
   ========================================== */

/* ==========================================
   RESET & BASE STYLES
   ========================================== */

.mifid-body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #1e293b;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ==========================================
   MIFID HEADER STYLES
   ========================================== */

.mifid-header {
    background: #2d3748;
    border-bottom: 1px solid #4a5568;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1020;
}

.mifid-header .navbar {
    padding: 1rem 0;
}

.mifid-header .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Logo styles */
.mifid-logo {
    height: 40px;
    width: auto;
    transition: transform 0.2s ease;
}

/* ==========================================
   CLIENT DETAILS PAGE STYLES
   ========================================== */

/* Page container - standard MiFID page layout */
.client-details-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Quick action buttons */
.quick-action-btn {
    height: 2.75rem;
    font-size: 0.9rem;
}

/* Icon sizes */
.client-details-icon-lg {
    font-size: 1.5rem;
}

.client-details-icon-md {
    font-size: 1.2rem;
}

/* Task alert styling */
.task-alert {
    border-left: 3px solid #6c757d !important;
}

/* Task badge styling */
.task-badge-circle {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* Timeline component */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    padding-bottom: 1rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid white;
}

.timeline::before {
    content: '';
    position: absolute;
    left: -1.45rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

/* Card hover effect */
.card {
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .client-details-gap-fix {
        flex-direction: column;
    }

    .client-details-gap-fix > * {
        width: 100%;
    }
}

/* ==========================================
   DIGITAL ONBOARDING PAGE STYLES
   ========================================== */

/* Hide header for onboarding page */
.onboarding-page .navbar,
.onboarding-page header {
    display: none !important;
}

/* Modern Onboarding Enhancements */
.digital-onboarding-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.onboarding-main-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.client-header {
    background: #ffffff;
    color: #1e293b;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.client-name {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #1e293b;
}

.client-name .icon {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.75rem;
    border-radius: 16px;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.onboarding-content-wrapper {
    display: flex;
    gap: 0;
    min-height: 600px;
}

/* Enhanced Sidebar */
.onboarding-sidebar {
    background: #fafbfc;
    border-right: 1px solid #e2e8f0;
    width: 300px;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: -8px;
    width: 1px;
    height: 20px;
    background: #e2e8f0;
    z-index: 1;
}

.step-item.complete:not(:last-child)::after {
    background: #10b981;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-item.complete .step-circle {
    background: #10b981;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.step-item.active .step-circle {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
}

.step-item.pending .step-circle {
    background: #f8fafc;
    color: #94a3b8;
    border: 1px solid #e2e8f0;
    font-weight: 600;
}

.step-label {
    font-weight: 600;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.4;
}

.step-item.active .step-label {
    color: #3b82f6;
    font-weight: 700;
}

.step-item.complete .step-label {
    color: #10b981;
    font-weight: 600;
}

/* Enhanced Content Area */
.step-content-area {
    flex: 1;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.step-content-card {
    text-align: center;
    max-width: 500px;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.step-content-card .step-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
    justify-content: center;
}

.step-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.step-description {
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.step-action-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 16px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.step-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.4);
    color: white;
}

.step-action-btn:active {
    transform: translateY(0);
}

/* Digital Onboarding Responsive Design */
@media (max-width: 768px) {
    .digital-onboarding-container {
        padding: 1rem;
    }

    .onboarding-content-wrapper {
        flex-direction: column;
    }

    .onboarding-sidebar {
        width: 100%;
        padding: 1.5rem;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .step-content-area {
        padding: 2rem 1.5rem;
    }

    .client-name {
        font-size: 1.5rem;
    }

    .step-item {
        padding: 0.75rem 0;
        margin-bottom: 0.25rem;
    }

    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .step-item:not(:last-child)::after {
        left: 18px;
        height: 15px;
        bottom: -5px;
    }
}

.mifid-logo:hover {
    transform: scale(1.05);
}

/* ==========================================
   LINK CREATED SUCCESS PAGE STYLES
   ========================================== */

/* Page container */
.link-created-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Main card layout */
.link-success-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin: 1rem 0;
}

/* Link Status Section */
.link-status-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2rem 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.link-status-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    position: relative;
    z-index: 2;
}

.link-status-text {
    position: relative;
    z-index: 2;
}

.link-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.link-success-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.125rem;
}

.link-expiry-date {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
}

/* Link Input Section */
.link-input-section {
    padding: 1rem 2rem 2rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.link-input-container {
    position: relative;
    flex: 1;
}

.link-url-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.75rem 60px 0.75rem 1rem;
    font-size: 0.875rem;
    color: #1e293b;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
}

.link-url-input:focus {
    background: white;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.copy-button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.copy-button:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.copy-feedback {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.copy-feedback.show {
    opacity: 1;
    transform: translateY(0);
}

/* Bottom section - steps */
.link-steps-section {
    padding: 1.5rem 2rem;
    background: #fafbfc;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-item {
    position: relative;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    counter-increment: step-counter;
    transition: all 0.2s ease;
}

.step-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-content {
    margin-left: 0;
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-title::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    width: 24px;
    height: 24px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.step-description {
    color: #64748b;
    line-height: 1.5;
    font-size: 1rem;
}

.step-description em {
    color: #3b82f6;
    font-weight: 600;
    font-style: normal;
}

.step-description strong {
    color: #1e293b;
    font-weight: 600;
}

/* Header section */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.back-button {
    background: white;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-button:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

/* Responsive design */
@media (max-width: 768px) {
    .link-success-card {
        flex-direction: column;
        margin: 1rem 0;
    }

    .link-info-section {
        flex: none;
        padding: 2rem 1.5rem;
    }

    .link-steps-section {
        padding: 2rem 1.5rem;
    }

    .link-success-title {
        font-size: 1.75rem;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-item::before {
        position: relative;
        margin-bottom: 0.5rem;
    }

    .step-content {
        margin-left: 0;
    }
}

/* Notification bell */
.mifid-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #4a5568;
    color: #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.2s ease;
}

.mifid-nav-icon:hover {
    background: #5a6c7d;
    color: #ffffff;
    transform: translateY(-1px);
}

.mifid-notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Account button */
.mifid-account-btn {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: #4a5568;
    border: 1px solid #5a6c7d;
    border-radius: 12px;
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mifid-account-btn:hover {
    background: #5a6c7d;
    border-color: #6b7c8d;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mifid-user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    margin-right: 10px;
}

.mifid-user-avatar-large {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.mifid-user-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
}

/* Dropdown styles */
.mifid-dropdown {
    border: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 0;
    min-width: 280px;
    margin-top: 8px;
}

.mifid-dropdown .dropdown-header {
    background: #f8fafc;
    border-radius: 12px 12px 0 0;
    padding: 16px;
    border: none;
}

.mifid-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mifid-user-full-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.mifid-user-email {
    color: #64748b;
    font-size: 0.85rem;
}

.mifid-dropdown .dropdown-item {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: #374151;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
}

.mifid-dropdown .dropdown-item:hover {
    background: #f1f5f9;
    color: #2563eb;
}

.mifid-dropdown .dropdown-item.text-danger:hover {
    background: #fef2f2;
    color: #dc2626;
}

.mifid-dropdown .dropdown-divider {
    margin: 0;
    border-color: #e5e7eb;
}

/* Login button */
.mifid-login-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #2563eb;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.mifid-login-btn:hover {
    background: #1d4ed8;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Mobile styles */
.navbar-toggler {
    border: none;
    padding: 8px;
    border-radius: 8px;
    background: #4a5568;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28226, 232, 240, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mifid-mobile-user {
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    margin: 0 16px;
}

.mifid-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mifid-mobile-action {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: white;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.15s ease;
}

.mifid-mobile-action:hover {
    background: #f1f5f9;
    color: #2563eb;
    text-decoration: none;
}

.mifid-mobile-action.text-danger:hover {
    background: #fef2f2;
    color: #dc2626;
}

/* ==========================================
   MAIN CONTENT & LAYOUT
   ========================================== */

.mifid-main {
    flex: 1;
    padding: 0;
    background-color: #f8fafc;
}

.mifid-messages {
    padding: 0;
}

.mifid-messages .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1rem;
}

.mifid-footer {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 2rem 0;
    margin-top: auto;
}

.mifid-footer .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.mifid-footer p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   PMF ORIGINAL STYLES (PRESERVED)
   ========================================== */

/* Simple effective title style */
.pmf-section-title .title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #2563eb;
    position: relative;
    display: inline-block;
    padding-left: 1rem;
    border-left: 4px solid #2563eb;
    line-height: 1.3;
}

.pmf-section-title p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0.5rem 0 0 1rem;
}

/* Cards */
.pmf-card, .pmf-card-bg {
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

/* Table styles */
.pmf-table-col {
    transition: all 0.2s ease;
}

.pmf-table-col:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pmf-table-name {
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
}

.pmf-table-name:hover {
    color: #2563eb;
    text-decoration: none;
}

/* Avatars - PRESERVED ORIGINAL STYLING */
.avatar {
    width: 40px;
    height: 40px;
    background: #6366f1 !important;
    color: white !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600 !important;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.avatar.avatar-xs {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
}

/* Buttons - PRESERVED ORIGINAL STYLING */
.btn-outline-primary {
    background: transparent !important;
    border: 1px solid #6366f1 !important;
    color: #6366f1 !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.btn-outline-primary:hover {
    background: #6366f1 !important;
    border-color: #6366f1 !important;
    color: white !important;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.pmf-createnewclient-button {
    background: #6366f1 !important;
    border: 1px solid #6366f1 !important;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600 !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pmf-createnewclient-button:hover {
    background: #4f46e5 !important;
    border-color: #4f46e5 !important;
    color: white !important;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.pmf-table-btn {
    background: #6366f1 !important;
    border: 1px solid #6366f1 !important;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500 !important;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pmf-table-btn:hover {
    background: #4f46e5 !important;
    border-color: #4f46e5 !important;
    color: white !important;
    text-decoration: none;
    transform: translateY(-1px);
}

.pmf-table-btn--primary {
    background: #6366f1 !important;
    border-color: #6366f1 !important;
}

/* Status badges - PRESERVED */
.status-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.status-completed {
    background: #dcfce7;
    color: #166534;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-missing {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge:hover {
    transform: scale(1.1);
}

/* ===========================
   FORM STYLES FROM PMF_STYLE.CSS
   =========================== */

/* Enhanced Tab Navigation */
.nav-tabs {
    border-bottom: 2px solid #e2e8f0 !important;
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    border: none !important;
    border-radius: 8px 8px 0 0 !important;
    margin-bottom: -2px;
    padding: 12px 20px !important;
    font-weight: 500 !important;
    color: #64748b !important;
    transition: all 0.2s ease !important;
    position: relative;
}

.nav-tabs .nav-link:hover {
    background: #f1f5f9 !important;
    color: #475569 !important;
}

.nav-tabs .nav-link.active {
    background: white !important;
    color: #1e293b !important;
    border-bottom: 2px solid #3b82f6 !important;
    font-weight: 600 !important;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3b82f6;
}

/* Section Headers */
.section-title text::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
    margin-right: 0.75rem;
    display: inline-block;
}

.section-title hr {
    border: none !important;
    height: 1px !important;
    background: linear-gradient(90deg, #e2e8f0, transparent) !important;
    margin: 0.5rem 0 1.5rem 0 !important;
}

/* Enhanced Form Fields */
.pmf-label {
    font-weight: 500 !important;
    color: #374151 !important;
    margin-bottom: 0.5rem !important;
}

.form-control, .form-select {
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    padding: 10px 12px !important;
    transition: all 0.2s ease !important;
    font-size: 0.95rem !important;
}

.form-control:focus, .form-select:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.form-control:hover, .form-select:hover {
    border-color: #9ca3af !important;
}

/* Required Field Indicator */
span[style*="color:red"] {
    color: #ef4444 !important;
    font-weight: 600;
}

/* Enhanced Buttons */
.pmf-form-button {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #475569 !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

.pmf-form-button:hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.pmf-form-button-save {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    border: none !important;
    color: white !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.pmf-form-button-save:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3) !important;
}

/* Collapsible Sections */
#delegato, #titolare_effettivo {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

#row-domicilio, #row-corrispondenza {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

/* Animation for collapsible sections */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.show-section {
    animation: slideDown 0.3s ease;
}

/* Tab content and panes */
.tab-content {
    min-height: 300px;
    padding-top: 20px;
}

.tab-pane {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tab-pane.active {
    opacity: 1;
}

.pmf-nav-item {
    color: var(--dark-light-blue) !important;
}

/* ===========================
   DOCUMENT MANAGEMENT STYLES
   =========================== */

/* Document card styling */
.document-type-badge .badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
}

.document-info .info-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 0.5rem;
}

.document-info .info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Upload zone styling */
.upload-zone {
    background-color: rgba(25, 153, 218, 0.03);
    border-color: rgba(25, 153, 218, 0.2) !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-zone:hover {
    background-color: rgba(25, 153, 218, 0.08);
    border-color: rgba(25, 153, 218, 0.4) !important;
}

.upload-zone.drag-over {
    background-color: rgba(25, 153, 218, 0.15);
    border-color: rgba(25, 153, 218, 0.6) !important;
    transform: scale(1.02);
}

/* Document cards grid improvements */
.pmf-card.h-100 {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.pmf-card.h-100:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* Form styling improvements */
.pmf-card-title h5 {
    color: var(--blue);
    font-weight: 600;
}

.form-label.text-primary {
    color: var(--blue) !important;
    font-size: 0.9rem;
}

/* Document status indicators */
.text-danger {
    color: #dc3545 !important;
}

.text-warning {
    color: #ffc107 !important;
}

/* Button spacing for document actions */
.d-flex.gap-2 {
    gap: 0.5rem !important;
}

/* ===========================
   QUESTIONNAIRE SPECIFIC STYLES
   =========================== */

/* Questionnaire card styling */
.questionnaire-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08) !important;
}

.questionnaire-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.questionnaire-badge .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
}

.questionnaire-status .badge {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.3rem 0.6rem;
}

.questionnaire-info .info-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 0.5rem;
}

.questionnaire-info .info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Risk profile badge styling */
.questionnaire-info .badge.bg-info {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
    color: white;
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
}

/* Status badges */
.badge.bg-success {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: white !important;
}

.badge.bg-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
}

/* Enhanced questionnaire actions */
.questionnaire-card .pmf-actions-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.2s ease;
}

.questionnaire-card .pmf-actions-link:hover {
    background: #3b82f6;
    color: white;
    transform: scale(1.1);
}

/* Risk Profile Badges */
.risk-profile-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #6b7280, #4b5563);
    transition: all 0.2s ease;
}

.risk-level-1 {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

.risk-level-2 {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
}

.risk-level-3 {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}

.risk-level-4 {
    background: linear-gradient(135deg, #f97316, #ea580c) !important;
}

.risk-level-5 {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.risk-profile-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===========================
   MIFID QUESTIONNAIRE STYLES
   =========================== */

/* Questionnaire Container */
.mifid-questionnaire-container {
    max-width: 100%;
}

/* Header Styles */
.questionnaire-header {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
}

.questionnaire-title .title {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.75rem;
}

.step-counter {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Questionnaire Card */
.mifid-questionnaire-card {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.questionnaire-card-header {
    background: linear-gradient(135deg, #1e293b, #334155);
    border: none;
    padding: 1.5rem 2rem;
    color: white;
}

.questionnaire-progress {
    height: 8px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.questionnaire-progress-bar {
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 50px;
    transition: width 0.5s ease;
}

.progress-text {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Enhanced original button styling */
.pmf-mifid-btn-option {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #374151;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pmf-mifid-btn-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.pmf-mifid-btn-option:hover::before {
    left: 100%;
}

.pmf-mifid-btn-option:hover {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.pmf-mifid-btn-option.selected {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-color: #1d4ed8;
    color: white;
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

/* Enhanced question styling */
.pmf-mifid-question {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* Enhanced main illustration */
.main-illustration {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.main-illustration:hover {
    transform: scale(1.05);
}

/* Navigation Buttons */
.questionnaire-card-footer {
    background: #f8fafc;
    border: none;
    padding: 1.5rem 2rem;
}

.questionnaire-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.questionnaire-btn {
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    min-width: 140px;
}

.questionnaire-btn-back {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.questionnaire-btn-back:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.questionnaire-btn-next {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.questionnaire-btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.questionnaire-btn-secondary {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
}

.questionnaire-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.questionnaire-btn-submit {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.questionnaire-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

/* Choice Cards Styles */
.choice-card {
    border-color: #e2e8f0 !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.choice-card:hover {
    border-color: #3b82f6 !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.choice-option[data-choice="start-questionnaire"] .choice-card:hover {
    border-color: #10b981 !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.choice-option[data-choice="generate-link"] .choice-card:hover {
    border-color: #3b82f6 !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.choice-icon {
    transition: transform 0.2s ease;
}

.choice-card:hover .choice-icon {
    transform: scale(1.1);
}

/* Continue questionnaire highlighting */
.continue-highlight {
    animation: gentle-pulse 2s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.continue-highlight:hover {
    animation: none;
    transform: scale(1.05) !important;
}

/* Current Questionnaire Styles */
.current-questionnaire-card {
    border-left: 4px solid #059669 !important;
}

.current-questionnaire-header {
    background: linear-gradient(135deg, #059669, #10b981);
}

.current-questionnaire-item {
    background: linear-gradient(135deg, #d1fae5, #ecfdf5);
    border-left: 4px solid #059669 !important;
}

.historical-questionnaire-item {
    background: #f8fafc;
}

.questionnaire-item {
    transition: all 0.2s ease;
}

.questionnaire-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.draft-questionnaire-item:hover {
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
}

.avatar-sm {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .questionnaire-header {
        padding: 1.5rem;
    }

    .questionnaire-title .title {
        font-size: 1.5rem;
    }

    .pmf-mifid-question {
        font-size: 1.2rem;
    }

    .main-illustration {
        width: 60px;
        height: 60px;
    }

    .questionnaire-nav-buttons {
        flex-direction: column;
    }

    .questionnaire-btn {
        width: 100%;
    }
}

/* ===========================
   CONFIRMATION MODAL STYLES
   =========================== */

/* Enhanced modal styling */
.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px 12px 0 0;
}

.modal-body {
    padding: 1.5rem;
    color: #374151;
    line-height: 1.6;
}

.modal-footer {
    border-top: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-radius: 0 0 12px 12px;
}

/* Confirmation modal specific styles */
#uploadConfirmModal .modal-header,
#editConfirmModal .modal-header {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

#uploadConfirmModal .btn-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

#uploadConfirmModal .btn-warning:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

#editConfirmModal .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

#editConfirmModal .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Modal animation enhancements */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

.modal.show .modal-dialog {
    transform: none;
}

/* Progress bars - PRESERVED */
.completion-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.completion-progress-bar {
    width: 120px;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.completion-progress-fill {
    height: 100%;
    background: #28a745 !important;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.completion-percentage-text {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    min-width: 40px;
}

/* Action links - PRESERVED */
.pmf-actions-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.pmf-actions-link:hover {
    background: #e5e7eb;
    color: #374151;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Search styles */
.client-search-container {
    position: relative;
    max-width: 400px;
}

.client-search-input {
    padding: 0.75rem 1rem;
    padding-right: 3rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.client-search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.client-search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

/* Status grid */
.status-grid-inline {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

/* Table headers */
.header-text {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Table header alignment fixes */
.table thead th {
    vertical-align: middle;
    border-bottom: 2px solid #e5e7eb;
}

/* Ensure first column (Cliente) has same padding as rows */
.table thead th:first-child {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

/* Other header columns padding consistency */
.table thead th:not(:first-child) {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

/* Row padding consistency */
.table tbody td:first-child {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.table tbody td:not(:first-child) {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

.sortable-header {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.sortable-header:hover {
    color: #2563eb;
}

.sort-icons {
    display: flex;
    flex-direction: column;
    margin-left: 0.25rem;
}

.sort-up, .sort-down {
    font-size: 0.625rem;
    color: #9ca3af;
    line-height: 1;
}

.sort-active .sort-up,
.sort-active .sort-down {
    color: #2563eb;
}

/* Badge styles */
.badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    border-radius: 0.375rem;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.text-primary {
    color: #2563eb !important;
}

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

@media (max-width: 991.98px) {
    .mifid-header .navbar {
        padding: 0.75rem 0;
    }

    .mifid-logo {
        height: 36px;
    }

    .mifid-footer {
        padding: 1.5rem 0;
        text-align: center;
    }

    .pmf-section-title .title {
        font-size: 1.875rem;
    }
}

@media (max-width: 576px) {
    .mifid-header .navbar {
        padding: 0.5rem 0;
    }

    .mifid-logo {
        height: 32px;
    }

    .mifid-dropdown {
        min-width: 250px;
    }

    .mifid-mobile-user {
        margin: 0 8px;
        padding: 16px;
    }

    .mifid-footer {
        padding: 1rem 0;
    }

    .pmf-section-title .title {
        font-size: 1.5rem;
    }

    .completion-progress-bar {
        width: 80px;
    }
}

/* ==========================================
   ANIMATIONS & UTILITIES
   ========================================== */

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

.navbar-toggler.active .navbar-toggler-icon {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.mifid-nav-icon:focus,
.mifid-account-btn:focus,
.mifid-login-btn:focus,
.pmf-createnewclient-button:focus,
.pmf-table-btn:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}