

    .modal-body .form-control:disabled {
        cursor: default;
    }

    .modal-body .form-group {
        transition: none !important;
    }
    .modal-body .form-group:hover {
        background-color: transparent !important;
    }
    html[data-theme="dark"] .modal-body .form-control:disabled,
    body[data-theme="dark"] .modal-body .form-control:disabled {
        background-color: rgba(255, 255, 255, 0.05) !important;
        border-color: rgba(255, 255, 255, 0.15) !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    html[data-theme="dark"] .modal-body label,
    body[data-theme="dark"] .modal-body label {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    #match-status-body .card {
        border-radius: 12px !important;
    }
    #match-status-body .card-body {
        padding: 1rem 1rem 0.5rem 1rem !important;
        min-height: auto;
    }
    #match-status-body .card-header {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    html[data-theme="dark"] .modal-body .form-group:hover,
    body[data-theme="dark"] .modal-body .form-group:hover {
        background-color: transparent !important;
    }
    html[data-theme="dark"] .modal-header svg,
    body[data-theme="dark"] .modal-header svg {
        color: #fff !important;
    }

    html[data-theme="dark"] #risk-indicators-modal-list .risk-indicator-item,
    body[data-theme="dark"] #risk-indicators-modal-list .risk-indicator-item {
        background-color: rgba(220, 53, 69, 0.15) !important;
        border-color: rgba(220, 53, 69, 0.4) !important;
    }
    html[data-theme="dark"] #risk-indicators-modal-list .risk-indicator-text,
    body[data-theme="dark"] #risk-indicators-modal-list .risk-indicator-text {
        color: rgba(255, 255, 255, 0.9) !important;
    }
    html[data-theme="dark"] #risk-indicators-modal-list .risk-indicator-item svg,
    body[data-theme="dark"] #risk-indicators-modal-list .risk-indicator-item svg {
        color: #dc3545 !important;
    }
    html[data-theme="dark"] #risk-indicators-modal-list .text-muted,
    body[data-theme="dark"] #risk-indicators-modal-list .text-muted {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .risk-factors-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .risk-factor-card {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 1rem;
    }
    .risk-factor-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 0.75rem;
        gap: 0.5rem;
    }
    .risk-factor-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
        color: #212529;
        flex: 1;
    }
    .risk-factor-points {
        font-size: 0.95rem;
        font-weight: 700;
        padding: 0.4rem 0.75rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .risk-factor-rationale {
        margin: 0;
        color: #495057;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    html[data-theme="dark"] .risk-factor-card,
    body[data-theme="dark"] .risk-factor-card {
        background-color: #2d2d2d;
        border-color: rgba(255, 255, 255, 0.12);
    }
    html[data-theme="dark"] .risk-factor-title,
    body[data-theme="dark"] .risk-factor-title {
        color: rgba(255, 255, 255, 0.9);
    }
    html[data-theme="dark"] .risk-factor-rationale,
    body[data-theme="dark"] .risk-factor-rationale {
        color: rgba(255, 255, 255, 0.7);
    }

    @media (max-width: 768px) {
        .risk-factors-grid {
            grid-template-columns: 1fr;
            gap: 0.5rem;
        }
        .risk-factor-header {
            flex-direction: column;
            align-items: flex-start;
        }
        .risk-factor-points {
            margin-top: 0.5rem;
        }
    }


    .process-steps {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-top: 1.5rem;
    }

    .process-step {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        padding: 1rem;
        position: relative;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .step-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: #007bff;
        color: #ffffff;
        border-radius: 50%;
        font-weight: bold;
        font-size: 1.1rem;
        margin-right: 0.75rem;
        flex-shrink: 0;
    }

    .step-title-wrapper {
        display: flex;
        align-items: center;
        margin-bottom: 0.75rem;
    }

    .step-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #333333;
        margin: 0;
    }

    .step-description {
        color: #666666;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .info-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .info-item {
        background-color: #f8f9fa;
        border-left: 4px solid #03d0ea;
        padding: 1rem;
        border-radius: 6px;
    }

    .info-label {
        font-weight: 600;
        color: #333333;
        margin-bottom: 0.25rem;
        display: block;
    }

    .info-text {
        color: #666666;
        line-height: 1.5;
        margin: 0;
    }


    .step-details {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .step-detail-item {
        background-color: #f8f9fa;
        border-left: 4px solid #03d0ea;
        padding: 1rem;
        border-radius: 6px;
    }

    .step-detail-label {
        font-weight: 600;
        color: #333333;
        margin-bottom: 0.25rem;
        display: block;
    }

    .step-detail-text {
        color: #666666;
        line-height: 1.5;
        margin: 0;
    }

    .risk-levels {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.25rem;
    }

    .risk-level-card {
        background-color: #ffffff;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        padding: 1rem;
    }

    .risk-level-card.low-risk {
        border-color: #28a745;
    }

    .risk-level-card.medium-risk {
        border-color: #ffc107;
    }

    .risk-level-card.high-risk {
        border-color: #dc3545;
    }

    .risk-level-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.75rem;
    }

    .risk-level-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #333333;
        margin: 0;
    }

    .risk-level-title-wrapper {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .risk-level-icon {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
    }

    .risk-level-card.low-risk .risk-level-icon {
        color: #28a745;
    }

    .risk-level-card.medium-risk .risk-level-icon {
        color: #ffc107;
    }

    .risk-level-card.high-risk .risk-level-icon {
        color: #dc3545;
    }

    .risk-level-range {
        background-color: #f8f9fa;
        padding: 0.25rem 0.75rem;
        border-radius: 4px;
        font-size: 0.9rem;
        font-weight: 500;
        color: #666666;
    }

    .risk-level-card.low-risk .risk-level-range {
        background-color: #d4edda;
        color: #155724;
    }

    .risk-level-card.medium-risk .risk-level-range {
        background-color: #fff3cd;
        color: #856404;
    }

    .risk-level-card.high-risk .risk-level-range {
        background-color: #f8d7da;
        color: #721c24;
    }

    .risk-level-description {
        color: #666666;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }

    .risk-level-action {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid #e0e0e0;
    }

    .risk-level-action strong {
        color: #333333;
        font-weight: 600;
    }

    .risk-level-action-text {
        color: #666666;
        line-height: 1.5;
        margin-top: 0.25rem;
    }


    html[data-theme="dark"] .process-step,
    body[data-theme="dark"] .process-step {
        background-color: #2d2d2d;
        border-color: #404040;
    }

    html[data-theme="dark"] .step-title,
    body[data-theme="dark"] .step-title {
        color: #e0e0e0;
    }

    html[data-theme="dark"] .step-number,
    body[data-theme="dark"] .step-number {
        background-color: #0066cc;
    }

    html[data-theme="dark"] .step-description,
    body[data-theme="dark"] .step-description {
        color: #b0b0b0;
    }


    .faq-section {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .faq-item-card {
        border: 1px solid #dee2e6;
        border-radius: 12px;
        margin-bottom: 1rem;
        overflow: hidden;
        background-color: #ffffff;
        transition: all 0.3s ease;
    }

    .faq-item-card:hover {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .faq-item-card.active {

        box-shadow: 0 2px 12px rgba(0, 123, 255, 0.15);
    }

    .faq-question {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 1rem 0.5rem;
        background-color: transparent;
        border: none;
        text-align: left;
        cursor: pointer;
        gap: 0.5rem;
        transition: background-color 0.2s ease;
    }

    .faq-question:hover {
        background-color: #f8f9fa;
    }

    .faq-question[aria-expanded="true"] {
        border-bottom: 1px solid #dee2e6;
    }

    .faq-question:focus {
        outline: 2px solid #007bff;
        outline-offset: -2px;
    }

    .faq-icon {
        font-size: 1.25rem;
        flex-shrink: 0;
        color: #007bff;
        width: 24px;
        text-align: center;
    }

    .faq-question-text {
        flex: 1;
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: #212529;
        line-height: 1.4;
    }

    .faq-chevron {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #6c757d;
        font-size: 0.875rem;
        transition: transform 0.3s ease;
    }

    .faq-question[aria-expanded="true"] .faq-chevron {
        transform: rotate(180deg);
    }

    .faq-answer {
        background-color: #ffffff;
    }

    .faq-answer-content {
        padding: 1rem 1rem 1rem 2rem;
    }

    .faq-answer-content p {
        margin: 0;
        color: #495057;
        line-height: 1.7;
        font-size: 1rem;
    }

    .faq-answer-content p:not(:last-child) {
        margin-bottom: 1rem;
    }

    .faq-answer-content strong {
        color: #212529;
        font-weight: 600;
    }


    html[data-theme="dark"] .process-step,
    body[data-theme="dark"] .process-step {
        background-color: #2d2d2d;
        border-color: #404040;
    }

    html[data-theme="dark"] .step-title,
    body[data-theme="dark"] .step-title {
        color: #e0e0e0;
    }

    html[data-theme="dark"] .step-description,
    body[data-theme="dark"] .step-description {
        color: #b0b0b0;
    }

    html[data-theme="dark"] .info-item,
    body[data-theme="dark"] .info-item {
        background-color: #353535;
        border-left-color: #03d0ea;
    }

    html[data-theme="dark"] .info-label,
    body[data-theme="dark"] .info-label {
        color: #e0e0e0;
    }

    html[data-theme="dark"] .info-text,
    body[data-theme="dark"] .info-text {
        color: #b0b0b0;
    }


    html[data-theme="dark"] .step-detail-item,
    body[data-theme="dark"] .step-detail-item {
        background-color: #353535;
        border-left-color: #007bff;
    }

    html[data-theme="dark"] .step-detail-label,
    body[data-theme="dark"] .step-detail-label {
        color: #e0e0e0;
    }

    html[data-theme="dark"] .step-detail-text,
    body[data-theme="dark"] .step-detail-text {
        color: #b0b0b0;
    }


    html[data-theme="dark"] .faq-item-card,
    body[data-theme="dark"] .faq-item-card {
        background-color: #2d2d2d;
        border-color: #404040;
    }

    html[data-theme="dark"] .faq-item-card:hover,
    body[data-theme="dark"] .faq-item-card:hover {
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    }

    html[data-theme="dark"] .faq-item-card.active,
    body[data-theme="dark"] .faq-item-card.active {

        box-shadow: 0 2px 12px rgba(0, 123, 255, 0.25);
    }

    html[data-theme="dark"] .faq-question,
    body[data-theme="dark"] .faq-question {
        color: #e0e0e0;
    }

    html[data-theme="dark"] .faq-question:hover,
    body[data-theme="dark"] .faq-question:hover {
        background-color: #353535;
    }

    html[data-theme="dark"] .faq-question[aria-expanded="true"],
    body[data-theme="dark"] .faq-question[aria-expanded="true"] {
        border-bottom-color: #404040;
    }

    html[data-theme="dark"] .faq-question-text,
    body[data-theme="dark"] .faq-question-text {
        color: #e0e0e0;
    }

    html[data-theme="dark"] .faq-icon,
    body[data-theme="dark"] .faq-icon {
        color: #4da3ff;
    }

    html[data-theme="dark"] .faq-chevron,
    body[data-theme="dark"] .faq-chevron {
        color: #adb5bd;
    }

    html[data-theme="dark"] .faq-answer,
    body[data-theme="dark"] .faq-answer {
        background-color: #2d2d2d;
    }

    html[data-theme="dark"] .faq-answer-content,
    body[data-theme="dark"] .faq-answer-content {
        background-color: #2d2d2d;
    }

    html[data-theme="dark"] .faq-answer-content p,
    body[data-theme="dark"] .faq-answer-content p {
        color: #b0b0b0;
    }

    html[data-theme="dark"] .faq-answer-content strong,
    body[data-theme="dark"] .faq-answer-content strong {
        color: #e0e0e0;
    }


    @media (max-width: 768px) {
        .process-steps {
            gap: 1.5rem;
        }

        .process-step {
            padding: 1rem;
        }

        .step-title {
            font-size: 1.2rem;
        }

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


        .step-details {
            grid-template-columns: 1fr;
        }

        .faq-question {
            padding: 0.75rem 0.5rem;
        }

        .faq-question-text {
            font-size: 1rem;
        }

        .faq-answer-content {
            padding: 0.75rem 0.75rem 0.75rem 1.5rem;
        }
    }

    html[data-theme="dark"] .risk-level-card,
    body[data-theme="dark"] .risk-level-card {
        background-color: #2d2d2d;
        border-color: #404040;
    }

    html[data-theme="dark"] .risk-level-title,
    body[data-theme="dark"] .risk-level-title {
        color: #e0e0e0;
    }

    html[data-theme="dark"] .risk-level-description,
    body[data-theme="dark"] .risk-level-description,
    html[data-theme="dark"] .risk-level-action-text,
    body[data-theme="dark"] .risk-level-action-text {
        color: #b0b0b0;
    }

    html[data-theme="dark"] .risk-level-action,
    body[data-theme="dark"] .risk-level-action {
        border-top-color: #404040;
    }

    html[data-theme="dark"] .risk-level-action strong,
    body[data-theme="dark"] .risk-level-action strong {
        color: #e0e0e0;
    }

    html[data-theme="dark"] .risk-level-card.low-risk .risk-level-icon,
    body[data-theme="dark"] .risk-level-card.low-risk .risk-level-icon {
        color: #4caf50;
    }

    html[data-theme="dark"] .risk-level-card.medium-risk .risk-level-icon,
    body[data-theme="dark"] .risk-level-card.medium-risk .risk-level-icon {
        color: #ffb300;
    }

    html[data-theme="dark"] .risk-level-card.high-risk .risk-level-icon,
    body[data-theme="dark"] .risk-level-card.high-risk .risk-level-icon {
        color: #f44336;
    }


    html[data-theme="dark"] .card-body,
    body[data-theme="dark"] .card-body {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    html[data-theme="dark"] .card-body p,
    body[data-theme="dark"] .card-body p {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    html[data-theme="dark"] .card-body li,
    body[data-theme="dark"] .card-body li {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    html[data-theme="dark"] .card-body strong,
    html[data-theme="dark"] .card-body b,
    body[data-theme="dark"] .card-body strong,
    body[data-theme="dark"] .card-body b {
        color: rgba(255, 255, 255, 0.95) !important;
    }

    html[data-theme="dark"] .card-body h2,
    html[data-theme="dark"] .card-body h3,
    html[data-theme="dark"] .card-body h4,
    body[data-theme="dark"] .card-body h2,
    body[data-theme="dark"] .card-body h3,
    body[data-theme="dark"] .card-body h4 {
        color: rgba(255, 255, 255, 0.95) !important;
    }

    html[data-theme="dark"] .card-body ul,
    html[data-theme="dark"] .card-body ol,
    body[data-theme="dark"] .card-body ul,
    body[data-theme="dark"] .card-body ol {
        color: rgba(255, 255, 255, 0.9) !important;
    }


    html[data-theme="light"] .card-body,
    html:not([data-theme="dark"]) .card-body,
    body[data-theme="light"] .card-body,
    body:not([data-theme="dark"]) .card-body {
        color: rgba(0, 0, 0, 0.75) !important;
    }

    html[data-theme="light"] .card-body p,
    html:not([data-theme="dark"]) .card-body p,
    body[data-theme="light"] .card-body p,
    body:not([data-theme="dark"]) .card-body p {
        color: rgba(0, 0, 0, 0.75) !important;
    }

    html[data-theme="light"] .card-body li,
    html:not([data-theme="dark"]) .card-body li,
    body[data-theme="light"] .card-body li,
    body:not([data-theme="dark"]) .card-body li {
        color: rgba(0, 0, 0, 0.75) !important;
    }

    html[data-theme="light"] .card-body strong,
    html[data-theme="light"] .card-body b,
    html:not([data-theme="dark"]) .card-body strong,
    html:not([data-theme="dark"]) .card-body b,
    body[data-theme="light"] .card-body strong,
    body[data-theme="light"] .card-body b,
    body:not([data-theme="dark"]) .card-body strong,
    body:not([data-theme="dark"]) .card-body b {
        color: rgba(0, 0, 0, 0.85) !important;
    }

    html[data-theme="light"] .card-body h2,
    html[data-theme="light"] .card-body h3,
    html[data-theme="light"] .card-body h4,
    html:not([data-theme="dark"]) .card-body h2,
    html:not([data-theme="dark"]) .card-body h3,
    html:not([data-theme="dark"]) .card-body h4,
    body[data-theme="light"] .card-body h2,
    body[data-theme="light"] .card-body h3,
    body[data-theme="light"] .card-body h4,
    body:not([data-theme="dark"]) .card-body h2,
    body:not([data-theme="dark"]) .card-body h3,
    body:not([data-theme="dark"]) .card-body h4 {
        color: rgba(0, 0, 0, 0.9) !important;
    }


    @media (max-width: 768px) {
        .process-steps {
            gap: 1.5rem;
        }

        .process-step {
            padding: 1rem;
        }

        .step-title {
            font-size: 1.2rem;
        }

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


        .step-details {
            grid-template-columns: 1fr;
        }

        .risk-levels {
            grid-template-columns: 1fr;
        }
    }


    #ip-bin-checker-form .disclaimer-feedback-links {
        justify-content: center;
        margin-top: 0.75rem;
        margin-bottom: 0;
    }

    .card.border-vcc:has(#ip-bin-checker-form) .card-footer {
        padding-top: 0.5rem;
        border-top: 0;
        background: transparent;
    }
