/* ====== WordExamples Index - Start ====== */
.examples-index-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.examples-index-header {
    margin-bottom: 2rem;
}

.examples-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.examples-breadcrumb-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
}

.examples-breadcrumb-link:hover {
    color: #059669;
    text-decoration: underline;
}

.examples-breadcrumb-separator {
    color: #9ca3af;
    margin: 0 0.75rem;
    font-weight: bold;
}

.examples-breadcrumb-current {
    color: #374151;
    font-weight: 600;
}

/* Word Showcase */
.examples-word-showcase {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
}

.examples-word-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 20px 20px 0 0;
}

.examples-word-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.examples-word-translation {
    font-size: 1.8rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 1rem;
    font-style: italic;
}

.examples-dictionary-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.examples-dictionary-name {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

.examples-language-pair {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.examples-source-lang,
.examples-target-lang {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.examples-source-lang {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.examples-target-lang {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(4, 120, 87, 0.1) 100%);
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.examples-language-arrow {
    color: #6b7280;
    font-weight: bold;
    font-size: 1rem;
}

/* Word Definition */
.examples-word-definition {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 16px;
    border-left: 4px solid #10b981;
}

.examples-definition-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 0.75rem;
}

.examples-definition-text {
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Word Meta */
.examples-word-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.examples-part-of-speech {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    color: #10b981;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.examples-pronunciation {
    color: #6b7280;
    font-style: italic;
    font-size: 0.95rem;
}

/* Header Actions */
.examples-header-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.examples-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.examples-btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.examples-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.examples-btn-icon {
    font-size: 1.1rem;
}

/* Stats Bar */
.examples-stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.examples-stat-item {
    text-align: center;
}

.examples-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.examples-stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Examples List */
.examples-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.example-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.example-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.example-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.example-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.example-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.example-actions {
    display: flex;
    gap: 0.5rem;
}

.example-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.example-action-edit {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.2);
}

.example-action-edit:hover {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
    transform: scale(1.05);
}

.example-action-practice {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.2);
}

.example-action-practice:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
    transform: scale(1.05);
}

.example-action-icon {
    font-size: 1rem;
}

.example-action-delete {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.2);
}

.example-action-delete:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
    transform: scale(1.05);
}

/* Example Content */
.example-content {
    margin-bottom: 1.5rem;
}

.example-source-section,
.example-target-section {
    margin-bottom: 1rem;
}

.example-language-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.example-text {
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 1rem;
    border-radius: 12px;
    border-left: 3px solid;
}

.example-source-text {
    background: rgba(16, 185, 129, 0.05);
    border-left-color: #10b981;
    color: #374151;
    font-weight: 500;
}

.example-target-text {
    background: rgba(5, 150, 105, 0.05);
    border-left-color: #059669;
    color: #6b7280;
    font-style: italic;
}

.example-divider {
    text-align: center;
    margin: 1rem 0;
}

.example-divider-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1rem;
}

/* Example Context */
.example-context {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(107, 114, 128, 0.05);
    border-radius: 12px;
    border-left: 3px solid #6b7280;
}

.example-context-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.example-context-text {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
    font-style: italic;
}

/* Example Meta */
.example-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.example-difficulty-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.example-difficulty-beginner {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.example-difficulty-intermediate {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.example-difficulty-advanced {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.example-created-date {
    color: #9ca3af;
    font-size: 0.85rem;
    font-style: italic;
}

/* Empty State */
.examples-empty-state {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.examples-empty-content {
    text-align: center;
    max-width: 600px;
}

.examples-empty-icon {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.examples-empty-title {
    font-size: 2rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1rem;
}

.examples-empty-description {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.examples-empty-suggestions {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.examples-suggestions-title {
    font-size: 1rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1rem;
}

.examples-suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.examples-suggestions-list li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.examples-suggestions-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.examples-empty-cta {
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

/* Navigation Footer */
.examples-navigation-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.examples-nav-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.examples-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.examples-nav-back {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.2);
}

.examples-nav-back:hover {
    background: rgba(107, 114, 128, 0.15);
    color: #374151;
    text-decoration: none;
}

.examples-nav-edit {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.examples-nav-edit:hover {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
    text-decoration: none;
}

.examples-nav-icon {
    font-size: 1rem;
}

/* Dark theme adaptations */
[data-bs-theme="dark"] .example-action-delete {
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
    border-color: rgba(248, 113, 113, 0.3);
}

[data-bs-theme="dark"] .example-action-delete:hover {
    background: rgba(248, 113, 113, 0.2);
    color: #ef4444;
}

[data-bs-theme="dark"] .examples-breadcrumb-current {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .examples-word-showcase {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-color: rgba(52, 211, 153, 0.2);
}

[data-bs-theme="dark"] .examples-word-title {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-bs-theme="dark"] .examples-word-translation {
    color: #a0aec0;
}

[data-bs-theme="dark"] .examples-dictionary-name {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .examples-source-lang {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2) 0%, rgba(16, 185, 129, 0.15) 100%);
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.3);
}

[data-bs-theme="dark"] .examples-target-lang {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
}

[data-bs-theme="dark"] .examples-word-definition {
    background: rgba(52, 211, 153, 0.1);
    border-left-color: #34d399;
}

[data-bs-theme="dark"] .examples-definition-title {
    color: #34d399;
}

[data-bs-theme="dark"] .examples-definition-text {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .examples-part-of-speech {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.3);
}

[data-bs-theme="dark"] .examples-pronunciation {
    color: #a0aec0;
}

[data-bs-theme="dark"] .examples-stats-bar {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-color: rgba(52, 211, 153, 0.2);
}

[data-bs-theme="dark"] .examples-stat-number {
    color: #34d399;
}

[data-bs-theme="dark"] .examples-stat-label {
    color: #a0aec0;
}

[data-bs-theme="dark"] .example-card {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(26, 32, 44, 0.9) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .example-card::before {
    background: linear-gradient(90deg, #34d399 0%, #10b981 100%);
}

[data-bs-theme="dark"] .example-number {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

[data-bs-theme="dark"] .example-source-text {
    background: rgba(52, 211, 153, 0.1);
    border-left-color: #34d399;
    color: #e2e8f0;
}

[data-bs-theme="dark"] .example-target-text {
    background: rgba(16, 185, 129, 0.1);
    border-left-color: #10b981;
    color: #a0aec0;
}

[data-bs-theme="dark"] .example-divider-icon {
    background: #34d399;
}

[data-bs-theme="dark"] .example-context {
    background: rgba(160, 174, 192, 0.1);
    border-left-color: #a0aec0;
}

[data-bs-theme="dark"] .example-context-label {
    color: #a0aec0;
}

[data-bs-theme="dark"] .example-context-text {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .example-card-meta {
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .example-type-badge {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.3);
}

[data-bs-theme="dark"] .example-created-date {
    color: #718096;
}

[data-bs-theme="dark"] .examples-empty-title {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .examples-empty-description {
    color: #a0aec0;
}

[data-bs-theme="dark"] .examples-empty-suggestions {
    background: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.2);
}

[data-bs-theme="dark"] .examples-suggestions-title {
    color: #34d399;
}

[data-bs-theme="dark"] .examples-suggestions-list li {
    color: #a0aec0;
}

[data-bs-theme="dark"] .examples-suggestions-list li::before {
    color: #34d399;
}

[data-bs-theme="dark"] .examples-navigation-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .examples-nav-back {
    background: rgba(160, 174, 192, 0.15);
    color: #a0aec0;
    border-color: rgba(160, 174, 192, 0.3);
}

[data-bs-theme="dark"] .examples-nav-back:hover {
    background: rgba(160, 174, 192, 0.2);
    color: #e2e8f0;
}

[data-bs-theme="dark"] .examples-nav-edit {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.3);
}

[data-bs-theme="dark"] .examples-nav-edit:hover {
    background: rgba(251, 191, 36, 0.2);
    color: #f59e0b;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .examples-index-container {
        padding: 1rem;
    }

    .examples-word-title {
        font-size: 2.2rem;
    }

    .examples-word-translation {
        font-size: 1.4rem;
    }

    .examples-stats-bar {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .example-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .example-actions {
        align-self: flex-end;
    }

    .example-card-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .examples-nav-actions {
        flex-direction: column;
    }

    .examples-nav-btn {
        justify-content: center;
    }

    .examples-header-actions {
        margin-top: 1rem;
    }

    .examples-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .examples-word-title {
        font-size: 1.8rem;
    }

    .examples-word-translation {
        font-size: 1.2rem;
    }

    .examples-language-pair {
        flex-wrap: wrap;
        justify-content: center;
    }

    .example-card {
        padding: 1rem;
    }

    .examples-word-showcase {
        padding: 1.5rem 1rem;
    }

    .examples-empty-suggestions {
        padding: 1rem;
    }

    .examples-breadcrumb {
        font-size: 0.8rem;
    }
}
/* ====== WordExamples Index - End ====== */

/* ====== WordExamples Create - Start ====== */
.create-example-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 2rem 0;
}

.create-example-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.create-example-header {
    text-align: center;
    padding: 2rem 2rem 1rem 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    position: relative;
}

.create-example-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 2px;
}

.create-example-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.create-example-breadcrumb-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
}

.create-example-breadcrumb-link:hover {
    color: #059669;
    text-decoration: underline;
}

.create-example-breadcrumb-separator {
    color: #9ca3af;
    margin: 0 0.75rem;
    font-weight: bold;
}

.create-example-breadcrumb-current {
    color: #374151;
    font-weight: 600;
}

.create-example-title {
    font-size: 2.2rem;
    font-weight: 300;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.create-example-word-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.create-example-word-pair {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.create-example-source-word,
.create-example-target-word {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 16px;
}

.create-example-source-word {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
    color: #10b981;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.create-example-target-word {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(4, 120, 87, 0.1) 100%);
    color: #059669;
    border: 2px solid rgba(5, 150, 105, 0.2);
}

.create-example-word-arrow {
    color: #6b7280;
    font-weight: bold;
    font-size: 1.2rem;
}

.create-example-dictionary-name {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

.create-example-language-pair {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.create-example-source-lang,
.create-example-target-lang {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

.create-example-source-lang {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.create-example-target-lang {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(4, 120, 87, 0.1) 100%);
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.create-example-arrow {
    color: #6b7280;
    font-weight: bold;
    font-size: 1rem;
}

.create-example-form {
    padding: 2rem;
}

/* Section Styles */
.create-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.1);
    position: relative;
}

.create-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 1px;
}

.create-example-pair-section {
    margin-bottom: 2.5rem;
}

.create-example-context-section {
    margin-bottom: 2rem;
}

/* Example Pair Specific Styles */
.create-example-pair-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.create-example-source,
.create-example-target {
    width: 100%;
    margin-bottom: 0;
}

.create-example-pair-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.create-pair-arrow-icon {
    font-size: 2rem;
    color: #10b981;
    font-weight: bold;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.create-example-pair-group:hover .create-pair-arrow-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

/* Form Styles */
.create-form-group {
    margin-bottom: 2rem;
    position: relative;
}

.create-form-label {
    color: #374151;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.create-form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(16, 185, 129, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

.create-form-control:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.2);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.create-form-control::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.create-example-textarea {
    min-height: 100px;
    font-size: 1.05rem;
}

.create-context-textarea {
    min-height: 90px;
}

.create-validation-summary:empty {
    display: none;
}

.create-validation-summary {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #dc2626;
}

.create-validation-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
    display: block;
}

.create-form-hint {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Buttons */
.create-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.create-btn {
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 140px;
    cursor: pointer;
}

.create-btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.create-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.create-btn-primary:active {
    transform: translateY(-1px);
}

.create-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(107, 114, 128, 0.3);
    color: #6b7280;
}

.create-btn-secondary:hover {
    background: #6b7280;
    color: white;
    border-color: #6b7280;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.3);
    text-decoration: none;
}

.create-btn-secondary:active {
    transform: translateY(-1px);
}

/* Tips Section */
.create-example-tips {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.02) 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    padding: 2rem;
}

.create-tips-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1.5rem;
    text-align: center;
}

.create-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.create-tip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.2s ease;
}

.create-tip-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-1px);
}

.create-tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.create-tip-text {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.4;
}

/* Input focus animations */
.create-form-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.02) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.create-form-control:focus ~ .create-form-group::before {
    opacity: 1;
}

/* Dark theme adaptations */
[data-bs-theme="dark"] .create-example-card {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(26, 32, 44, 0.9) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .create-example-header {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
}

[data-bs-theme="dark"] .create-example-title {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-bs-theme="dark"] .create-example-breadcrumb-current {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .create-example-dictionary-name {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .create-example-source-word {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2) 0%, rgba(16, 185, 129, 0.15) 100%);
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.3);
}

[data-bs-theme="dark"] .create-example-target-word {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
}

[data-bs-theme="dark"] .create-example-source-lang {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2) 0%, rgba(16, 185, 129, 0.15) 100%);
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.3);
}

[data-bs-theme="dark"] .create-example-target-lang {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
}

[data-bs-theme="dark"] .create-section-title {
    color: #e2e8f0;
    border-bottom-color: rgba(52, 211, 153, 0.2);
}

[data-bs-theme="dark"] .create-form-label {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .create-form-control {
    background: rgba(45, 55, 72, 0.8);
    border-color: rgba(52, 211, 153, 0.2);
    color: #e2e8f0;
}

[data-bs-theme="dark"] .create-form-control:focus {
    border-color: #34d399;
    background: rgba(45, 55, 72, 1);
    box-shadow: 0 0 0 0.2rem rgba(52, 211, 153, 0.2);
}

[data-bs-theme="dark"] .create-form-control::placeholder {
    color: #6b7280;
}

[data-bs-theme="dark"] .create-pair-arrow-icon {
    color: #34d399;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-color: rgba(52, 211, 153, 0.2);
}

[data-bs-theme="dark"] .create-example-pair-group:hover .create-pair-arrow-icon {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-color: rgba(52, 211, 153, 0.3);
}

[data-bs-theme="dark"] .create-btn-secondary {
    background: rgba(45, 55, 72, 0.9);
    border-color: rgba(160, 174, 192, 0.3);
    color: #a0aec0;
}

[data-bs-theme="dark"] .create-btn-secondary:hover {
    background: #a0aec0;
    color: #1a202c;
    border-color: #a0aec0;
}

[data-bs-theme="dark"] .create-form-hint {
    color: #718096;
}

[data-bs-theme="dark"] .create-form-actions {
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .create-example-tips {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-top-color: rgba(52, 211, 153, 0.2);
}

[data-bs-theme="dark"] .create-tips-title {
    color: #34d399;
}

[data-bs-theme="dark"] .create-tip-item {
    background: rgba(45, 55, 72, 0.7);
    border-color: rgba(52, 211, 153, 0.2);
}

[data-bs-theme="dark"] .create-tip-item:hover {
    background: rgba(45, 55, 72, 0.9);
    border-color: rgba(52, 211, 153, 0.3);
}

[data-bs-theme="dark"] .create-tip-text {
    color: #e2e8f0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .create-example-container {
        padding: 1rem;
        max-width: 100%;
    }

    .create-example-form {
        padding: 1.5rem;
    }

    .create-example-title {
        font-size: 1.8rem;
    }

    .create-example-word-pair {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .create-example-word-arrow {
        transform: rotate(90deg);
        font-size: 1rem;
    }

    .create-example-source-word,
    .create-example-target-word {
        font-size: 1.1rem;
    }

    .create-form-actions {
        flex-direction: column;
    }

    .create-btn {
        width: 100%;
    }

    .create-example-tips {
        padding: 1.5rem;
    }

    .create-tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .create-example-container {
        padding: 0.5rem;
    }

    .create-example-form {
        padding: 1rem;
    }

    .create-example-header {
        padding: 1.5rem 1rem 0.5rem 1rem;
    }

    .create-example-title {
        font-size: 1.6rem;
    }

    .create-pair-arrow-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .create-section-title {
        font-size: 1.1rem;
    }

    .create-example-breadcrumb {
        font-size: 0.8rem;
    }

    .create-example-language-pair {
        flex-wrap: wrap;
        justify-content: center;
    }

    .create-tip-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .create-tip-icon {
        font-size: 2rem;
    }
}
/* ====== WordExamples Create - End ====== */

/* ====== WordExamples Edit - Start ====== */
.edit-example-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 2rem 0;
}

.edit-example-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.edit-example-header {
    text-align: center;
    padding: 2rem 2rem 1rem 2rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
    position: relative;
}

.edit-example-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    border-radius: 2px;
}

.edit-example-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.edit-example-breadcrumb-link {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 500;
}

.edit-example-breadcrumb-link:hover {
    color: #d97706;
    text-decoration: underline;
}

.edit-example-breadcrumb-separator {
    color: #9ca3af;
    margin: 0 0.75rem;
    font-weight: bold;
}

.edit-example-breadcrumb-current {
    color: #374151;
    font-weight: 600;
}

.edit-example-title {
    font-size: 2.2rem;
    font-weight: 300;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.edit-example-word-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.edit-example-word-pair {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.edit-example-source-word,
.edit-example-target-word {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 16px;
}

.edit-example-source-word {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
    color: #f59e0b;
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.edit-example-target-word {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.15) 0%, rgba(180, 83, 9, 0.1) 100%);
    color: #d97706;
    border: 2px solid rgba(217, 119, 6, 0.2);
}

.edit-example-word-arrow {
    color: #6b7280;
    font-weight: bold;
    font-size: 1.2rem;
}

.edit-example-dictionary-name {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

.edit-example-language-pair {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.edit-example-source-lang,
.edit-example-target-lang {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

.edit-example-source-lang {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.edit-example-target-lang {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.15) 0%, rgba(180, 83, 9, 0.1) 100%);
    color: #d97706;
    border: 1px solid rgba(217, 119, 6, 0.2);
}

.edit-example-arrow {
    color: #6b7280;
    font-weight: bold;
    font-size: 1rem;
}

.edit-example-form {
    padding: 2rem;
}

/* Section Styles */
.edit-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(245, 158, 11, 0.1);
    position: relative;
}

.edit-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    border-radius: 1px;
}

.edit-example-pair-section {
    margin-bottom: 2.5rem;
}

.edit-example-context-section {
    margin-bottom: 2rem;
}

/* Example Pair Specific Styles */
.edit-example-pair-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.edit-example-source,
.edit-example-target {
    width: 100%;
    margin-bottom: 0;
}

.edit-example-pair-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.edit-pair-arrow-icon {
    font-size: 2rem;
    color: #f59e0b;
    font-weight: bold;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.edit-example-pair-group:hover .edit-pair-arrow-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%);
    border-color: rgba(245, 158, 11, 0.3);
}

/* Form Styles */
.edit-form-group {
    margin-bottom: 2rem;
    position: relative;
}

.edit-form-label {
    color: #374151;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.edit-form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(245, 158, 11, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

.edit-form-control:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.2);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.edit-form-control::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.edit-example-textarea {
    min-height: 100px;
    font-size: 1.05rem;
}

.edit-context-textarea {
    min-height: 90px;
}

.edit-validation-summary:empty {
    display: none;
}

.edit-validation-summary {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #dc2626;
}

.edit-validation-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
    display: block;
}

.edit-form-hint {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Buttons */
.edit-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.edit-btn {
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 140px;
    cursor: pointer;
}

.edit-btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.edit-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
    color: white;
    text-decoration: none;
}

.edit-btn-primary:active {
    transform: translateY(-1px);
}

.edit-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(107, 114, 128, 0.3);
    color: #6b7280;
}

.edit-btn-secondary:hover {
    background: #6b7280;
    color: white;
    border-color: #6b7280;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.3);
    text-decoration: none;
}

.edit-btn-secondary:active {
    transform: translateY(-1px);
}

/* Info Section */
.edit-example-info {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.02) 100%);
    border-top: 1px solid rgba(245, 158, 11, 0.1);
    padding: 2rem;
}

.edit-info-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 1rem;
    text-align: center;
}

.edit-info-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.edit-info-actions {
    display: flex;
    justify-content: center;
}

.edit-info-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.edit-info-btn:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
    color: #d97706;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.edit-info-btn-icon {
    font-size: 1rem;
}

/* Input focus animations */
.edit-form-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.02) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.edit-form-control:focus ~ .edit-form-group::before {
    opacity: 1;
}

/* Dark theme adaptations */
[data-bs-theme="dark"] .edit-example-card {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(26, 32, 44, 0.9) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .edit-example-header {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
}

[data-bs-theme="dark"] .edit-example-title {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-bs-theme="dark"] .edit-example-breadcrumb-link {
    color: #fbbf24;
}

[data-bs-theme="dark"] .edit-example-breadcrumb-link:hover {
    color: #f59e0b;
}

[data-bs-theme="dark"] .edit-example-breadcrumb-current {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .edit-example-dictionary-name {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .edit-example-source-word {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.15) 100%);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.3);
}

[data-bs-theme="dark"] .edit-example-target-word {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.15) 100%);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
}

[data-bs-theme="dark"] .edit-example-source-lang {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.15) 100%);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.3);
}

[data-bs-theme="dark"] .edit-example-target-lang {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.15) 100%);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
}

[data-bs-theme="dark"] .edit-section-title {
    color: #e2e8f0;
    border-bottom-color: rgba(251, 191, 36, 0.2);
}

[data-bs-theme="dark"] .edit-form-label {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .edit-form-control {
    background: rgba(45, 55, 72, 0.8);
    border-color: rgba(251, 191, 36, 0.2);
    color: #e2e8f0;
}

[data-bs-theme="dark"] .edit-form-control:focus {
    border-color: #fbbf24;
    background: rgba(45, 55, 72, 1);
    box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.2);
}

[data-bs-theme="dark"] .edit-form-control::placeholder {
    color: #6b7280;
}

[data-bs-theme="dark"] .edit-pair-arrow-icon {
    color: #fbbf24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-color: rgba(251, 191, 36, 0.2);
}

[data-bs-theme="dark"] .edit-example-pair-group:hover .edit-pair-arrow-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
    border-color: rgba(251, 191, 36, 0.3);
}

[data-bs-theme="dark"] .edit-btn-secondary {
    background: rgba(45, 55, 72, 0.9);
    border-color: rgba(160, 174, 192, 0.3);
    color: #a0aec0;
}

[data-bs-theme="dark"] .edit-btn-secondary:hover {
    background: #a0aec0;
    color: #1a202c;
    border-color: #a0aec0;
}

[data-bs-theme="dark"] .edit-form-hint {
    color: #718096;
}

[data-bs-theme="dark"] .edit-form-actions {
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .edit-example-info {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-top-color: rgba(251, 191, 36, 0.2);
}

[data-bs-theme="dark"] .edit-info-title {
    color: #fbbf24;
}

[data-bs-theme="dark"] .edit-info-description {
    color: #a0aec0;
}

[data-bs-theme="dark"] .edit-info-btn {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.3);
}

[data-bs-theme="dark"] .edit-info-btn:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.15) 100%);
    color: #f59e0b;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .edit-example-container {
        padding: 1rem;
        max-width: 100%;
    }

    .edit-example-form {
        padding: 1.5rem;
    }

    .edit-example-title {
        font-size: 1.8rem;
    }

    .edit-example-word-pair {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .edit-example-word-arrow {
        transform: rotate(90deg);
        font-size: 1rem;
    }

    .edit-example-source-word,
    .edit-example-target-word {
        font-size: 1.1rem;
    }

    .edit-form-actions {
        flex-direction: column;
    }

    .edit-btn {
        width: 100%;
    }

    .edit-example-info {
        padding: 1.5rem;
    }

    .edit-info-actions {
        margin-top: 1rem;
    }

    .edit-info-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .edit-example-container {
        padding: 0.5rem;
    }

    .edit-example-form {
        padding: 1rem;
    }

    .edit-example-header {
        padding: 1.5rem 1rem 0.5rem 1rem;
    }

    .edit-example-title {
        font-size: 1.6rem;
    }

    .edit-pair-arrow-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .edit-section-title {
        font-size: 1.1rem;
    }

    .edit-example-breadcrumb {
        font-size: 0.8rem;
    }

    .edit-example-language-pair {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* ====== WordExamples Edit - End ====== */