/* ============================================
   AI CV — İlana Göre Otomatik CV Oluşturucu
   Prefix: aicv-
   Design system: style.css ile uyumlu
   ============================================ */

/* ── Layout ── */
.aicv-container {
    display: flex;
    height: calc(100vh - 56px);
    overflow: hidden;
}

.aicv-form-panel {
    width: 42%;
    min-width: 380px;
    overflow-y: auto;
    background: var(--panel-bg);
    backdrop-filter: blur(10px);
    border-right: 1px solid var(--border-light);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.03);
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
    z-index: 10;
}

.aicv-form-panel::-webkit-scrollbar {
    width: 6px;
}
.aicv-form-panel::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 10px;
}

.aicv-preview-panel {
    flex: 1;
    overflow-x: auto;
    overflow-y: auto;
    background-color: var(--preview-bg);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
}

/* ── Header (style.css .form-header ile uyumlu) ── */
.aicv-header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--border-light);
}

.aicv-header-content {
    text-align: center;
    padding: 1.25rem 1.5rem 1rem;
}

.aicv-header-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aicv-header-content p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin: 0;
}

/* ── Quota Badge ── */
.aicv-quota {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-top: 1px solid rgba(34, 197, 94, 0.1);
    font-size: 0.78rem;
    color: #166534;
    font-weight: 500;
}

.aicv-quota.aicv-quota--warning {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
    color: #854d0e;
    border-top-color: rgba(234, 179, 8, 0.15);
}

.aicv-quota.aicv-quota--exhausted {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #991b1b;
    border-top-color: rgba(239, 68, 68, 0.15);
}

.aicv-quota-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: aicv-pulse 2s ease-in-out infinite;
}

.aicv-quota--warning .aicv-quota-dot {
    background: #eab308;
}

.aicv-quota--exhausted .aicv-quota-dot {
    background: #ef4444;
    animation: none;
}

@keyframes aicv-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ── Form Content ── */
.aicv-form-body {
    padding: 1.25rem;
}

/* ── Tip Banner — "Ne kadar çok bilgi o kadar iyi" ── */
.aicv-tip-banner {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 1rem 1.15rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #e0e7ff 100%);
    border: 1px solid #93c5fd;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    animation: aicv-fadeIn 0.5s ease;
}

.aicv-tip-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 4s ease-in-out infinite 1s;
    pointer-events: none;
}

.aicv-tip-icon-wrap {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    animation: aicv-tip-glow 3s ease-in-out infinite;
}

@keyframes aicv-tip-glow {
    0%, 100% { box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 4px 20px rgba(99, 102, 241, 0.5); }
}

.aicv-tip-content {
    flex: 1;
    min-width: 0;
}

.aicv-tip-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 4px;
}

.aicv-tip-desc {
    font-size: 0.78rem;
    color: #1e40af;
    line-height: 1.55;
    margin-bottom: 8px;
}

.aicv-tip-desc strong {
    color: #1e3a8a;
}

.aicv-tip-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    padding: 5px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.aicv-tip-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    color: white;
}

/* ── Job Listing Textarea (style.css .card ile uyumlu) ── */
.aicv-job-card {
    border: 1px solid var(--border-light);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.aicv-job-card:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12), var(--shadow-md);
}

.aicv-job-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1rem;
    background: #f8fafc !important;
    border-bottom: 1px solid var(--border-light);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
}

.aicv-job-card-header i {
    font-size: 1rem;
    color: var(--accent);
}

.aicv-job-textarea {
    width: 100%;
    min-height: 180px;
    max-height: 400px;
    border: none;
    outline: none;
    padding: 1rem;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--text-main);
    resize: vertical;
    background: white;
    box-sizing: border-box;
}

.aicv-job-textarea::placeholder {
    color: #94a3b8;
    font-style: italic;
}

.aicv-job-textarea:focus {
    outline: none;
}

.aicv-job-counter {
    display: flex;
    justify-content: flex-end;
    padding: 4px 12px 8px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ── Personal Info Section (style.css .card ile uyumlu) ── */
.aicv-section {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.aicv-section:hover {
    box-shadow: var(--shadow-md);
}

.aicv-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    background: #f8fafc !important;
    border-bottom: 1px solid var(--border-light);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
}

.aicv-section-header .aicv-cached-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 500;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 2px 8px;
    border-radius: 20px;
}

.aicv-section-body {
    padding: 1rem;
}

/* ── Form Fields (style.css .form-control ile uyumlu) ── */
.aicv-field {
    margin-bottom: 0.6rem;
}

.aicv-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.aicv-field input,
.aicv-field textarea {
    width: 100%;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    font-family: inherit;
    color: var(--text-main);
    background-color: #f8fafc;
    transition: var(--transition);
    box-sizing: border-box;
}

.aicv-field input:focus,
.aicv-field textarea:focus {
    outline: none;
    background-color: white;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.aicv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

/* ── Existing CV Data Summary ── */
.aicv-data-summary {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.aicv-data-summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-bottom: 1px solid #bfdbfe;
    font-weight: 600;
    font-size: 0.85rem;
    color: #1e40af;
}

.aicv-data-edit-link {
    font-size: 0.75rem;
    text-decoration: none;
    color: var(--accent);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.aicv-data-edit-link:hover {
    color: var(--accent-hover);
}

.aicv-data-summary-body {
    padding: 0.75rem 1rem;
}

.aicv-data-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.82rem;
    line-height: 1.5;
}

.aicv-data-item:last-child {
    border-bottom: none;
}

.aicv-data-label {
    font-weight: 600;
    color: var(--primary);
    min-width: 90px;
    flex-shrink: 0;
}

.aicv-data-value {
    color: var(--text-main);
    word-break: break-word;
}

.aicv-data-value em {
    color: var(--text-muted);
    font-style: italic;
}

.aicv-data-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    background: #e0e7ff;
    color: #4338ca;
    font-size: 0.72rem;
    font-weight: 600;
    margin-left: 4px;
}

/* ── Missing Data Warning Card ── */
.aicv-missing-data-card {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fbbf24;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    animation: aicv-fadeIn 0.4s ease;
}

@keyframes aicv-fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.aicv-missing-icon {
    font-size: 2rem;
    color: #d97706;
    margin-bottom: 0.5rem;
}

.aicv-missing-title {
    font-size: 1rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 0.4rem;
}

.aicv-missing-desc {
    font-size: 0.82rem;
    color: #a16207;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.aicv-missing-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #334155);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.aicv-missing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.3);
    color: white;
}

/* ── Generate Button ── */
.aicv-generate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.25), 0 2px 8px rgba(15, 23, 42, 0.15);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.aicv-generate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: left 0.5s ease;
}

.aicv-generate-btn:hover::before {
    left: 100%;
}

.aicv-generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.35), 0 4px 12px rgba(15, 23, 42, 0.2);
}

.aicv-generate-btn:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}

.aicv-generate-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background: #94a3b8;
}

.aicv-generate-btn:disabled::before {
    display: none;
}

.aicv-generate-btn i {
    font-size: 1.15rem;
}

/* ── Loading State ── */
.aicv-loading-overlay {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1.5rem;
}

.aicv-loading-overlay.active {
    display: flex;
}

.aicv-spinner {
    width: 56px;
    height: 56px;
    border: 4px solid #e0e7ff;
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: aicv-spin 0.8s linear infinite;
}

@keyframes aicv-spin {
    to { transform: rotate(360deg); }
}

.aicv-loading-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
}

.aicv-loading-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.5;
}

/* ── Loading Steps Animation ── */
.aicv-loading-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 280px;
}

.aicv-loading-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.05);
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all 0.4s ease;
    opacity: 0.4;
}

.aicv-loading-step.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-hover);
    opacity: 1;
    font-weight: 500;
}

.aicv-loading-step.done {
    color: #16a34a;
    opacity: 0.7;
}

.aicv-loading-step i {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
}

/* ── Preview Empty State ── */
.aicv-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    gap: 1rem;
}

.aicv-empty-icon {
    font-size: 4rem;
    opacity: 0.3;
    animation: aicv-float 4s ease-in-out infinite;
}

@keyframes aicv-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.aicv-empty-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    opacity: 0.6;
}

.aicv-empty-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 300px;
    line-height: 1.5;
}

/* ── Result Actions (style.css .fab ile uyumlu) ── */
.aicv-result-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.aicv-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: 'Inter', -apple-system, sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    white-space: nowrap;
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.aicv-action-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.aicv-action-btn:active {
    transform: translateY(-1px) scale(0.98);
    transition-duration: 0.1s;
}

.aicv-action-btn--primary {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: white;
}

.aicv-action-btn--primary:hover {
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
}

.aicv-action-btn--secondary {
    background: rgba(255, 255, 255, 0.92);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.aicv-action-btn--secondary:hover {
    background: #fef2f2;
    border-color: rgba(220, 38, 38, 0.3);
    color: #b91c1c;
}

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

.aicv-action-btn--apply:hover {
    background: linear-gradient(135deg, #047857, #059669);
}

/* ── Info Cards ── */
.aicv-info {
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.aicv-info h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 6px;
}

.aicv-info ul {
    margin: 0;
    padding-left: 1.2rem;
}

.aicv-info li {
    margin-bottom: 4px;
}

/* ── CTA Strip (Index sayfası için) ── */
.aicv-cta-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 50%, #7c3aed 100%);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.aicv-cta-strip:hover {
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #8b5cf6 100%);
}

.aicv-cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.aicv-cta-content {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
    font-size: 0.72rem;
}

.aicv-cta-text {
    color: #f8fafc;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.aicv-cta-desc {
    color: #c4b5fd;
    font-weight: 400;
}

.aicv-cta-badge {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    color: #e9d5ff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: aicv-pulse 2s ease-in-out infinite;
}

.aicv-cta-arrow {
    color: #c4b5fd;
    font-weight: 700;
    font-size: 0.85rem;
    transition: transform 0.25s ease;
    margin-left: 2px;
}

.aicv-cta-strip:hover .aicv-cta-arrow {
    transform: translateX(4px);
    color: #e9d5ff;
}

/* ── Mobile Bottom Nav (style.css .glass-nav ile uyumlu) ── */
.aicv-mobile-nav {
    height: 65px;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.aicv-mobile-nav .nav-link {
    color: var(--text-muted);
}

.aicv-mobile-nav .nav-link.active {
    background-color: var(--primary);
    color: white !important;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

/* ── Footer ── */
.aicv-footer {
    text-align: center;
    padding: 1.5rem 1rem 3rem;
}

.aicv-footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── Toast Animation ── */
@keyframes aicv-toast-in {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 1200px) {
    .aicv-form-panel {
        width: 45%;
        min-width: 340px;
    }
}

@media (max-width: 991.98px) {
    .aicv-container {
        flex-direction: column;
        height: calc(100vh - 56px - 65px);
    }

    .aicv-form-panel,
    .aicv-preview-panel {
        width: 100%;
        min-width: unset;
    }

    .aicv-form-panel {
        display: none;
        height: 100%;
        border-right: none;
    }

    .aicv-preview-panel {
        display: none;
        height: 100%;
    }

    .aicv-form-panel.active-panel {
        display: block !important;
    }

    .aicv-preview-panel.active-panel {
        display: flex !important;
    }

    /* Result actions: mobilde alt navigasyonun üstünde sabit */
    .aicv-result-actions {
        bottom: 82px !important;
        right: 16px !important;
        flex-direction: column;
        gap: 8px;
    }

    .aicv-action-btn {
        padding: 12px;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
        font-size: 0;
    }

    .aicv-action-btn i {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .aicv-form-body {
        padding: 1rem;
    }

    .aicv-row {
        grid-template-columns: 1fr;
    }

    .aicv-header-content {
        padding: 1rem 1rem 0.75rem;
    }

    .aicv-header-content h2 {
        font-size: 1.15rem;
    }

    .aicv-missing-data-card {
        padding: 1.25rem;
    }

    .aicv-missing-title {
        font-size: 0.92rem;
    }

    .aicv-missing-desc {
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .aicv-cta-desc {
        display: none;
    }

    .aicv-header-content h2 {
        font-size: 1.05rem;
    }

    .aicv-header-content p {
        font-size: 0.75rem;
    }

    .aicv-job-textarea {
        min-height: 140px;
    }

    .aicv-generate-btn {
        padding: 12px 20px;
        font-size: 0.92rem;
    }

    .aicv-data-item {
        flex-direction: column;
        gap: 2px;
    }

    .aicv-data-label {
        min-width: unset;
    }

    .aicv-result-actions {
        right: 12px !important;
        bottom: 78px !important;
        gap: 6px;
    }

    .aicv-action-btn {
        width: 48px;
        height: 48px;
        padding: 10px;
    }
}
