/**
 * NexiPilot Admin Styles - Modern UI/UX
 * 
 * @package NexiPilot
 * @since 1.0.0
 */

/* ========================================
   SETTINGS PAGE - MODERN REDESIGN
   ======================================== */

/* WordPress Admin Notices */
.nexipilot-settings-wrap .notice,
.nexipilot-settings-wrap .updated,
.nexipilot-settings-wrap .error {
    margin: 0 0 20px 0;
    padding: 12px 16px;
    border-left: 4px solid;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.nexipilot-settings-wrap .updated,
.nexipilot-settings-wrap .notice-success {
    border-left-color: #10b981;
}

.nexipilot-settings-wrap .error,
.nexipilot-settings-wrap .notice-error {
    border-left-color: #ef4444;
}

.nexipilot-settings-wrap .notice p {
    margin: 0;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

/* SweetAlert2 Toast Positioning */
.nexipilot-toast.swal2-popup {
    margin-top: 46px !important;
    /* Position below WordPress admin bar (32px) + some spacing */
}

/* Adjust for mobile admin bar */
@media screen and (max-width: 782px) {
    .nexipilot-toast.swal2-popup {
        margin-top: 60px !important;
        /* Mobile admin bar is taller (46px) + spacing */
    }
}

/* Main Wrapper */
.nexipilot-settings-wrap {
    margin: 20px 20px 0 0;
    background: #f9fafb;
    min-height: calc(100vh - 32px);
}

/* Header Section */
.nexipilot-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    margin: -20px -20px 30px 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nexipilot-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nexipilot-header-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nexipilot-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.nexipilot-icon svg {
    color: white;
}

.nexipilot-header h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nexipilot-subtitle {
    margin: 8px 0 0 0;
    font-size: 16px;
    opacity: 0.95;
    font-weight: 400;
}

/* Status Badge */
.nexipilot-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Status Badge States */
.nexipilot-status-connected .status-dot {
    background: #10b981;
}

.nexipilot-status-disconnected .status-dot {
    background: #ef4444;
    animation: none;
}

.nexipilot-status-warning .status-dot {
    background: #f59e0b;
    animation: none;
}

/* New Status Classes for Provider Badges */
.nexipilot-status-green {
    background-color: #10b981;
    color: white;
}

.nexipilot-status-yellow {
    background-color: #f59e0b;
    color: white;
}

.nexipilot-status-gray {
    background-color: #6b7280;
    color: white;
}

.nexipilot-status-red {
    background-color: #ef4444;
    color: white;
}

.nexipilot-status-partial .status-dot {
    background: #f59e0b;
    animation: none;
}

/* Tooltip styling (native browser tooltip via title attribute) */
.nexipilot-badge[title] {
    cursor: help;
}

/* Tab Navigation */
.nexipilot-tabs {
    display: flex;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto 24px;
    padding: 0;
}

.nexipilot-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nexipilot-tab svg {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.nexipilot-tab:hover {
    border-color: #d1d5db;
    background: #f9fafb;
    color: #374151;
}

.nexipilot-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(102, 126, 234, 0.3);
}

.nexipilot-tab.active svg {
    color: white;
}

/* Tab Content */
.nexipilot-tab-content {
    display: none;
}

.nexipilot-tab-content.active {
    display: block;
}

/* Settings Grid */
.nexipilot-settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0 30px 0;
}

/* Card Styles */
.nexipilot-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.nexipilot-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.nexipilot-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.nexipilot-card-header .nexipilot-badge {
    margin-left: auto;
}

.nexipilot-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nexipilot-card-icon svg {
    color: white;
}

.nexipilot-card-header h2 {
    margin: 0 0 4px 0;
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.nexipilot-card-header p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.nexipilot-card-body {
    padding: 24px;
}

/* Field Groups */
.nexipilot-field-group {
    margin-bottom: 24px;
}

.nexipilot-field-group:last-child {
    margin-bottom: 0;
}

.nexipilot-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.nexipilot-label-small {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 6px;
}

/* Badge */
.nexipilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.nexipilot-badge-success {
    background: #d1fae5;
    color: #065f46;
}

.nexipilot-badge svg {
    width: 12px;
    height: 12px;
}

/* Input Styles */
.nexipilot-select,
.nexipilot-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #111827;
    background: white;
    transition: all 0.2s ease;
}

.nexipilot-select:focus,
.nexipilot-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.nexipilot-select-small {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    color: #374151;
    background: white;
}

/* Input Group */
.nexipilot-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.nexipilot-input-group .nexipilot-input {
    padding-right: 45px;
}

.nexipilot-btn-icon {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexipilot-btn-icon:hover {
    color: #667eea;
}

/* Field Description */
.nexipilot-field-description {
    margin: 6px 0 0 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.nexipilot-field-description a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.nexipilot-field-description a:hover {
    text-decoration: underline;
}

/* Feature Items */
.nexipilot-feature-item {
    padding: 20px;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.nexipilot-feature-item:last-child {
    margin-bottom: 0;
}

.nexipilot-feature-item:hover {
    border-color: #e5e7eb;
    background: #f9fafb;
}

.nexipilot-feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.nexipilot-feature-info {
    flex: 1;
}

.nexipilot-feature-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
    cursor: pointer;
}

.nexipilot-feature-title svg {
    color: #667eea;
    flex-shrink: 0;
}

.nexipilot-feature-description {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.nexipilot-feature-options {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
    display: none;
}

.nexipilot-feature-options.active {
    display: block;
}

/* Toggle Switch */
.nexipilot-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.nexipilot-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.nexipilot-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.3s;
    border-radius: 26px;
}

.nexipilot-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nexipilot-toggle input:checked+.nexipilot-toggle-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.nexipilot-toggle input:checked+.nexipilot-toggle-slider:before {
    transform: translateX(22px);
}

.nexipilot-toggle input:focus+.nexipilot-toggle-slider {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

/* Submit Button */
.nexipilot-submit-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 0;
}

.nexipilot-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    padding: 12px 32px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.2s ease !important;
    text-shadow: none !important;
    height: auto !important;
}

.nexipilot-btn-primary:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.nexipilot-btn-primary:active {
    transform: translateY(0) !important;
}

/* ========================================
   FAQ META BOX STYLES
   ======================================== */

/* FAQ Meta Box Container */
#nexipilot-faq-metabox {
    padding: 0;
}

.nexipilot-faq-container {
    padding: 20px;
}

/* FAQ Header */
.nexipilot-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f1;
}

.nexipilot-faq-enable {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nexipilot-faq-enable label {
    font-weight: 600;
    color: #1d2327;
    margin: 0;
}

/* FAQ Items */
.nexipilot-faq-items {
    margin-bottom: 20px;
}

.nexipilot-faq-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.nexipilot-faq-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nexipilot-faq-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.nexipilot-faq-number {
    font-weight: 600;
    color: #667eea;
    font-size: 14px;
}

.nexipilot-faq-field {
    margin-bottom: 12px;
}

.nexipilot-faq-field:last-child {
    margin-bottom: 0;
}

.nexipilot-faq-field label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
    font-size: 13px;
}

.nexipilot-faq-field input[type="text"],
.nexipilot-faq-field textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.nexipilot-faq-field input[type="text"]:focus,
.nexipilot-faq-field textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.nexipilot-faq-field textarea {
    min-height: 80px;
    resize: vertical;
}

/* Checkbox Group - Grid Layout for AI Providers */
.nexipilot-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

/* Provider Selection Cards */
.nexipilot-checkbox-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    user-select: none;
    height: 100%;
}

.nexipilot-checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.nexipilot-checkbox-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    min-height: 80px;
    position: relative;
    overflow: visible;
    text-align: center;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}

/* Hover Effects */
.nexipilot-checkbox-card:hover .nexipilot-checkbox-card__content {
    border-color: #d1d5db;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    background: #f9fafb;
    transform: translateY(-2px);
}

/* Selected State */
.nexipilot-checkbox-card input[type="checkbox"]:checked+.nexipilot-checkbox-card__content {
    background: #f0fdf4;
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.nexipilot-checkbox-card__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #f3f4f6;
    color: #6b7280;
    transition: all 0.2s ease;
}

.nexipilot-checkbox-card input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__icon {
    background: white;
    color: #10b981;
    transform: scale(1.1);
}

.nexipilot-checkbox-card__icon svg {
    width: 18px;
    height: 18px;
}

.nexipilot-checkbox-card__label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    transition: color 0.2s ease;
    line-height: 1.2;
}

.nexipilot-checkbox-card input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__label {
    color: #065f46;
}

/* Checkmark Badge */
.nexipilot-checkbox-card__status {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 16px;
    height: 16px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.nexipilot-checkbox-card input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__status {
    opacity: 1;
    transform: scale(1);
}

/* Reduce checkmark icon size */
.nexipilot-checkbox-card__status svg {
    width: 10px;
    height: 10px;
}

/* Brand Specific Colors (Optional enhancements) */
.nexipilot-checkbox-card--chatgpt input[type="checkbox"]:checked+.nexipilot-checkbox-card__content {
    background: #f0fdf9;
    border-color: #10a37f;
}

.nexipilot-checkbox-card--chatgpt input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__status,
.nexipilot-checkbox-card--chatgpt input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__icon {
    background-color: #10a37f;
    color: white;
}

.nexipilot-checkbox-card--chatgpt input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__label {
    color: #10a37f;
}

.nexipilot-checkbox-card--claude input[type="checkbox"]:checked+.nexipilot-checkbox-card__content {
    background: #fff7ed;
    border-color: #d97757;
}

.nexipilot-checkbox-card--claude input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__status,
.nexipilot-checkbox-card--claude input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__icon {
    background-color: #d97757;
    color: white;
}

.nexipilot-checkbox-card--claude input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__label {
    color: #d97757;
}

.nexipilot-checkbox-card--perplexity input[type="checkbox"]:checked+.nexipilot-checkbox-card__content {
    background: #f0fdfa;
    border-color: #20808d;
}

.nexipilot-checkbox-card--perplexity input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__status,
.nexipilot-checkbox-card--perplexity input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__icon {
    background-color: #20808d;
    color: white;
}

.nexipilot-checkbox-card--perplexity input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__label {
    color: #20808d;
}

.nexipilot-checkbox-card--grok input[type="checkbox"]:checked+.nexipilot-checkbox-card__content {
    background: #f9fafb;
    border-color: #000000;
}

.nexipilot-checkbox-card--grok input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__status,
.nexipilot-checkbox-card--grok input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__icon {
    background-color: #000000;
    color: white;
}

.nexipilot-checkbox-card--grok input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__label {
    color: #000000;
}

.nexipilot-checkbox-card--copilot input[type="checkbox"]:checked+.nexipilot-checkbox-card__content {
    background: #eff6ff;
    border-color: #0078d4;
}

.nexipilot-checkbox-card--copilot input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__status,
.nexipilot-checkbox-card--copilot input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__icon {
    background-color: #0078d4;
    color: white;
}

.nexipilot-checkbox-card--copilot input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__label {
    color: #0078d4;
}

.nexipilot-checkbox-card--google input[type="checkbox"]:checked+.nexipilot-checkbox-card__content {
    background: #fef2f2;
    border-color: #4285f4;
}

.nexipilot-checkbox-card--google input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__status,
.nexipilot-checkbox-card--google input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__icon {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #ea4335 100%);
    color: white;
}

.nexipilot-checkbox-card--google input[type="checkbox"]:checked+.nexipilot-checkbox-card__content .nexipilot-checkbox-card__label {
    color: #4285f4;
}


/* FAQ Actions */
.nexipilot-faq-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.button.nexipilot-add-faq,
.button.nexipilot-generate-faq {
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.button.nexipilot-add-faq:hover,
.button.nexipilot-generate-faq:hover {
    background: #5568d3;
    color: white;
    transform: translateY(-1px);
}

.button.nexipilot-remove-faq {
    background: #ef4444;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.2s ease;
}

.button.nexipilot-remove-faq:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-1px);
}

.nexipilot-no-faqs {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nexipilot-settings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 782px) {
    .nexipilot-header {
        padding: 24px;
    }

    .nexipilot-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .nexipilot-header h1 {
        font-size: 24px;
    }

    .nexipilot-feature-header {
        flex-direction: column;
        gap: 12px;
    }

    .nexipilot-toggle {
        align-self: flex-start;
    }

    /* Checkbox Group Responsive */
    .nexipilot-checkbox-group {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .nexipilot-checkbox-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nexipilot-checkbox-card__content {
        padding: 10px 6px;
        min-height: 70px;
    }

    .nexipilot-checkbox-card__icon {
        width: 28px;
        height: 28px;
    }

    .nexipilot-checkbox-card__icon svg {
        width: 16px;
        height: 16px;
    }

    .nexipilot-checkbox-card__label {
        font-size: 12px;
    }
}