/* ====== Entries Index - Start ====== */
.entries-index-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(37, 99, 235, 0.04) 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.entries-index-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
}

.entries-index-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.entries-index-title {
    font-size: 2.5rem;
    font-weight: 300;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -1px;
}

.entries-index-back-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.entries-index-back-btn:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    text-decoration: none;
}

.entries-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.entries-index-card {
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.7) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.entries-index-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.entries-index-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.85) 100%);
}

.entries-index-card:hover::before {
    transform: scaleX(1);
}

.entries-index-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.entries-index-notebook-badge {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
    align-self: flex-start;
}

.entries-index-entry-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.entries-index-entry-content {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.entries-index-entry-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    /* background: linear-gradient(transparent, rgba(255, 255, 255, 0.9)); */
}

.entries-index-entry-meta {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.entries-index-entry-meta::before {
    content: '🕐';
    font-size: 0.8rem;
}

.entries-index-entry-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: auto;
}

.entries-index-action-btn {
    flex: 1;
    padding: 0.4rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    border: none;
}

.entries-index-btn-view {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.entries-index-btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    color: white;
    text-decoration: none;
}

.entries-index-btn-edit {
    background: rgba(107, 114, 128, 0.1);
    border: 2px solid rgba(107, 114, 128, 0.2);
    color: #6b7280;
}

.entries-index-btn-edit:hover {
    background: #6b7280;
    color: white;
    border-color: #6b7280;
    text-decoration: none;
    transform: translateY(-2px);
}

.entries-index-btn-notebook {
    background: rgba(14, 165, 233, 0.1);
    border: 2px solid rgba(14, 165, 233, 0.2);
    color: #0ea5e9;
}

.entries-index-btn-notebook:hover {
    background: #0ea5e9;
    color: white;
    border-color: #0ea5e9;
    text-decoration: none;
    transform: translateY(-2px);
}

.entries-index-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(248, 250, 252, 0.4) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 2px dashed rgba(59, 130, 246, 0.2);
    position: relative;
}

.entries-index-empty::before {
    content: '📝';
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.4;
    animation: float 3s ease-in-out infinite;
}

.entries-index-empty-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.entries-index-empty-text {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.entries-index-empty-btn {
    padding: 1rem 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.entries-index-empty-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Dark theme adaptations */
[data-bs-theme="dark"] .entries-index-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
}

[data-bs-theme="dark"] .entries-index-title {
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-bs-theme="dark"] .entries-index-back-btn {
    background: rgba(45, 55, 72, 0.9);
    border-color: rgba(147, 197, 253, 0.3);
    color: #93c5fd;
}

[data-bs-theme="dark"] .entries-index-back-btn:hover {
    background: #93c5fd;
    color: #1a202c;
    border-color: #93c5fd;
}

[data-bs-theme="dark"] .entries-index-card {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.9) 0%, rgba(26, 32, 44, 0.7) 100%);
}

[data-bs-theme="dark"] .entries-index-card:hover {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(26, 32, 44, 0.85) 100%);
    box-shadow: 0 20px 60px rgba(147, 197, 253, 0.15);
}

[data-bs-theme="dark"] .entries-index-entry-title {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .entries-index-entry-content {
    color: #a0aec0;
}

[data-bs-theme="dark"] .entries-index-entry-meta {
    color: #718096;
}

[data-bs-theme="dark"] .entries-index-empty {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.6) 0%, rgba(26, 32, 44, 0.4) 100%);
    border-color: rgba(147, 197, 253, 0.2);
}

[data-bs-theme="dark"] .entries-index-empty-title {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .entries-index-empty-text {
    color: #a0aec0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .entries-index-header {
        padding: 1.5rem;
    }

    .entries-index-header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .entries-index-title {
        font-size: 2rem;
        text-align: center;
    }

    .entries-index-back-btn {
        justify-content: center;
    }

    .entries-index-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .entries-index-card-body {
        padding: 1.5rem;
    }

    .entries-index-entry-actions {
        flex-direction: column;
    }

    .entries-index-empty {
        padding: 3rem 1.5rem;
    }
}
/* ====== Entries Index - End ====== */

/* ====== Entries Details - Start ====== */
.entries-details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.entries-details-breadcrumb {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.entries-details-breadcrumb .breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}

.entries-details-breadcrumb .breadcrumb-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.entries-details-breadcrumb .breadcrumb-item a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.entries-details-breadcrumb .breadcrumb-item.active {
    color: #374151;
    font-weight: 600;
}

.entries-details-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(37, 99, 235, 0.04) 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.entries-details-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
}

.entries-details-title {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.entries-details-meta {
    color: #6b7280;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.entries-details-meta::before {
    content: '🕐';
    font-size: 0.9rem;
}

.entries-details-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.entries-details-actions-row {
    display: flex;
    gap: 0.8rem;
}

.entries-details-action-btn {
    flex: 1;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 44px;
    border: none;
    cursor: pointer;
}

.entries-details-btn-edit {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.entries-details-btn-edit:hover {
    background: #f59e0b;
    color: white;
    border-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
    text-decoration: none;
}

.entries-details-btn-delete {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.entries-details-btn-delete:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}

.entries-details-btn-back {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.entries-details-btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.3);
    color: white;
    text-decoration: none;
}

.entries-details-alert {
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-left: 4px solid #22c55e;
    color: #065f46;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.entries-details-content-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.15),
            0 8px 25px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
    overflow: hidden;
    transform: translateY(-5px);  /* Hafif yükseltilmiş */
    transition: all 0.3s ease;
    position: relative;
}

.entries-details-content-card:hover {
    transform: translateY(-8px);
    box-shadow:
            0 25px 80px rgba(0, 0, 0, 0.2),
            0 12px 35px rgba(0, 0, 0, 0.15);
}

.entries-details-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
    opacity: 0.8;
}

.entries-details-content-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.15rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.02em;
}

.entries-details-content-body {
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.6);
}

.entries-details-content-text {
    color: #0f172a;  /* En koyu siyah */
    line-height: 1.9;  /* Çok rahat okuma */
    font-size: 1.5rem;  /* Daha da büyük */
    font-weight: 600;  /* Daha kalın */
    white-space: pre-line;
    margin: 0;
    letter-spacing: 0.025em;
    text-rendering: optimizeLegibility;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);  /* Hafif text shadow */
}

.entries-details-phrases-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(248, 250, 252, 0.4) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.entries-details-phrases-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(34, 197, 94, 0.1);
    position: relative;
}

.entries-details-phrases-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.entries-details-phrases-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.entries-details-phrases-count {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.entries-details-add-phrase-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.entries-details-add-phrase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    color: white;
    text-decoration: none;
}

.entries-details-phrase-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.7) 100%);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 4px solid transparent;
}

.entries-details-phrase-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.entries-details-phrase-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.85) 100%);
}

.entries-details-phrase-card:hover::before {
    transform: scaleY(1);
}

.entries-details-phrase-body {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.entries-details-phrase-content {
    flex-grow: 1;
}

.entries-details-phrase-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.entries-details-phrase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.entries-details-phrase-tag {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.entries-details-phrase-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.entries-details-phrase-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.entries-details-phrase-btn-view {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.entries-details-phrase-btn-view:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    transform: translateY(-2px);
    text-decoration: none;
}

.entries-details-phrase-btn-edit {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.entries-details-phrase-btn-edit:hover {
    background: #f59e0b;
    color: white;
    border-color: #f59e0b;
    transform: translateY(-2px);
    text-decoration: none;
}

.entries-details-phrase-btn-tag {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.entries-details-phrase-btn-tag:hover {
    background: #22c55e;
    color: white;
    border-color: #22c55e;
    transform: translateY(-2px);
}

.entries-details-phrases-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(248, 250, 252, 0.4) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px dashed rgba(34, 197, 94, 0.2);
}

.entries-details-phrases-empty::before {
    content: '💬';
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.4;
    animation: float 3s ease-in-out infinite;
}

.entries-details-phrases-empty-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.8rem;
}

.entries-details-phrases-empty-text {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.entries-details-phrases-empty-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.entries-details-phrases-empty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    color: white;
    text-decoration: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Dark theme adaptations */
[data-bs-theme="dark"] .entries-details-breadcrumb {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

[data-bs-theme="dark"] .entries-details-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
}

[data-bs-theme="dark"] .entries-details-title {
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-bs-theme="dark"] .entries-details-meta {
    color: #a0aec0;
}

[data-bs-theme="dark"] .entries-details-alert {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: #6ee7b7;
}

[data-bs-theme="dark"] .entries-details-content-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 2px solid rgba(148, 163, 184, 0.25);
    box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.4),
            0 8px 25px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .entries-details-content-card:hover {
    transform: translateY(-8px);
    box-shadow:
            0 25px 80px rgba(0, 0, 0, 0.5),
            0 12px 35px rgba(0, 0, 0, 0.4);
}

[data-bs-theme="dark"] .entries-details-content-card::before {
    background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 50%, #22d3ee 100%);
    opacity: 0.9;
}

[data-bs-theme="dark"] .entries-details-content-header {
    background: linear-gradient(135deg, #1e3a73 0%, #020617 100%);
    color: #f8fafc;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

[data-bs-theme="dark"] .entries-details-content-body {
    background: rgba(30, 41, 59, 0.4);
}

[data-bs-theme="dark"] .entries-details-content-text {
    color: #f1f5f9;  /* Çok açık beyaz */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;  /* Dark'ta da kalın */
}

[data-bs-theme="dark"] .entries-details-phrases-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.5) 100%);
    border-color: rgba(148, 163, 184, 0.2);
}

[data-bs-theme="dark"] .entries-details-phrases-title {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .entries-details-phrase-card {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.9) 0%, rgba(26, 32, 44, 0.7) 100%);
}

[data-bs-theme="dark"] .entries-details-phrase-text {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .entries-details-phrases-empty {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.6) 0%, rgba(26, 32, 44, 0.4) 100%);
    border-color: rgba(34, 197, 94, 0.2);
}

[data-bs-theme="dark"] .entries-details-phrases-empty-title {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .entries-details-phrases-empty-text {
    color: #a0aec0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .entries-details-header {
        padding: 1.5rem;
    }

    .entries-details-title {
        font-size: 1.8rem;
    }

    .entries-details-actions-row {
        flex-direction: column;
    }

    .entries-details-phrases-section {
        padding: 1.5rem;
    }

    .entries-details-phrases-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .entries-details-add-phrase-btn {
        justify-content: center;
    }

    .entries-details-phrase-body {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .entries-details-phrase-actions {
        justify-content: center;
    }
}

/* Addition for Notes */
/* Notes Toggle Button */
.entries-details-phrase-btn-notes {
    width: 100px;
    height: 36px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    position: relative;
}

.entries-details-phrase-btn-notes:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
    color: white;
}

.entries-details-phrase-btn-notes .notes-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.25rem;
}

/* Notes Collapse Section */
.entries-details-phrase-notes-collapse {
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    margin-top: 1rem;
}

.entries-details-phrase-notes-section {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.02) 100%);
    border-radius: 0 0 16px 16px;
}

.entries-details-phrase-notes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.entries-details-phrase-notes-title {
    color: #667eea;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.entries-details-phrase-notes-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 36px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.entries-details-phrase-notes-add-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.entries-details-phrase-notes-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.entries-details-phrase-note-item {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.entries-details-phrase-note-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.entries-details-phrase-note-content {
    flex: 1;
    min-width: 0;
}

.entries-details-phrase-note-text {
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.entries-details-phrase-note-meta {
    color: #9ca3af;
    font-style: italic;
    font-size: 0.8rem;
}

.entries-details-phrase-note-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.entries-details-phrase-note-action-btn {
    width: 60px;
    height: 32px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.entries-details-phrase-note-action-btn:first-child {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.entries-details-phrase-note-action-btn:first-child:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.entries-details-phrase-note-delete-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.entries-details-phrase-note-delete-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    color: white;
}

/* Collapsed state styling */
.entries-details-phrase-btn-notes[aria-expanded="true"] {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.entries-details-phrase-btn-notes[aria-expanded="true"]::after {
    content: ' ▲';
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.entries-details-phrase-btn-notes[aria-expanded="false"]::after {
    content: ' ▼';
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

/* Dark theme adaptations */
[data-bs-theme="dark"] .entries-details-phrase-notes-section {
    background: linear-gradient(135deg, rgba(144, 205, 244, 0.05) 0%, rgba(167, 139, 250, 0.03) 100%);
}

[data-bs-theme="dark"] .entries-details-phrase-notes-collapse {
    border-top-color: rgba(144, 205, 244, 0.2);
}

[data-bs-theme="dark"] .entries-details-phrase-notes-header {
    border-bottom-color: rgba(144, 205, 244, 0.2);
}

[data-bs-theme="dark"] .entries-details-phrase-notes-title {
    color: #90cdf4;
}

[data-bs-theme="dark"] .entries-details-phrase-note-item {
    background: rgba(45, 55, 72, 0.7);
    border-color: rgba(144, 205, 244, 0.2);
}

[data-bs-theme="dark"] .entries-details-phrase-note-text {
    color: #cbd5e0;
}

[data-bs-theme="dark"] .entries-details-phrase-note-meta {
    color: #718096;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .entries-details-phrase-actions {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .entries-details-phrase-btn-notes {
        justify-content: center;
    }

    .entries-details-phrase-note-item {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .entries-details-phrase-note-actions {
        justify-content: flex-end;
    }
}
/* ====== Entries Details - End ====== */

/* ====== Entries - Delete Modal - Start ====== */
/* Modern modal content */
.entry-delete-modern {
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden !important;
}

/* Header styling */
.entry-delete-header {
    border-bottom: none !important;
    padding: 24px 28px 0 28px !important;
}

.entry-delete-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.entry-delete-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.entry-delete-title {
    margin: 0 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    line-height: 1.3 !important;
}

.entry-delete-close {
    width: 36px !important;
    height: 36px !important;
    border: none !important;
    background: rgba(156, 163, 175, 0.2) !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    color: #6b7280 !important;
}

.entry-delete-close:hover {
    color: #374151 !important;
    transform: scale(1.05) !important;
}

/* Body styling */
.entry-delete-body {
    padding: 20px 28px 24px 28px !important;
}

.entry-delete-question {
    margin: 0 0 16px 0 !important;
    font-size: 16px !important;
    color: #374151 !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
}

.entry-delete-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    border-left: 4px solid #f59e0b !important;
    margin: 0 !important;
}

.entry-delete-warning-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.entry-delete-warning-icon {
    margin-top: 2px;
    flex-shrink: 0;
}

.entry-delete-warning-text {
    margin: 0 !important;
    font-size: 14px !important;
    color: #92400e !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
}

/* Footer styling */
.entry-delete-footer {
    border-top: none !important;
    padding: 0 28px 28px 28px !important;
    gap: 12px !important;
}

.entry-delete-cancel {
    padding: 12px 20px !important;
    background: rgba(156, 163, 175, 0.1) !important;
    color: #6b7280 !important;
    border: 1px solid rgba(156, 163, 175, 0.3) !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.entry-delete-cancel:hover {
    background: rgba(156, 163, 175, 0.2) !important;
    border-color: rgba(156, 163, 175, 0.5) !important;
    color: #374151 !important;
    transform: translateY(-1px) !important;
}

.entry-delete-confirm {
    padding: 12px 20px !important;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
}

.entry-delete-confirm:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4) !important;
}

.entry-delete-confirm:active,
.entry-delete-cancel:active {
    transform: scale(0.98) !important;
}

/* Focus states */
.entry-delete-close:focus,
.entry-delete-cancel:focus,
.entry-delete-confirm:focus {
    outline: 2px solid rgba(99, 102, 241, 0.5) !important;
    outline-offset: 2px !important;
}

/* Dark theme adaptations */
[data-bs-theme="dark"] .entry-delete-title {
    color: #ccc !important;
}

[data-bs-theme="dark"] .entry-delete-question {
    color: #ccc !important;
}

[data-bs-theme="dark"] .entry-delete-cancel {
    color: #ccc !important;
}

[data-bs-theme="dark"] .entry-delete-cancel:hover {
    color: #fff !important;
}

/* Responsive */
@media (max-width: 640px) {
    .entry-delete-header,
    .entry-delete-body,
    .entry-delete-footer {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .entry-delete-footer {
        flex-direction: column-reverse !important;
        gap: 8px !important;
    }

    .entry-delete-cancel,
    .entry-delete-confirm {
        width: 100% !important;
        justify-content: center !important;
    }
}
/* ====== Entries - Delete Modal - End ====== */

/* ====== Entries - Bulk Delete Confirmation Modal - Start ====== */
/* Modern modal content */
.phrase-bulk-delete-modern {
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden !important;
}

/* Header styling */
.phrase-bulk-delete-header {
    border-bottom: none !important;
    padding: 24px 28px 0 28px !important;
}

.phrase-bulk-delete-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phrase-bulk-delete-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.phrase-bulk-delete-title {
    margin: 0 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    line-height: 1.3 !important;
}

.phrase-bulk-delete-close {
    width: 36px !important;
    height: 36px !important;
    border: none !important;
    background: rgba(156, 163, 175, 0.1) !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    color: #6b7280 !important;
}

.phrase-bulk-delete-close:hover {
    background: rgba(156, 163, 175, 0.2) !important;
    color: #374151 !important;
    transform: scale(1.05) !important;
}

/* Body styling */
.phrase-bulk-delete-body {
    padding: 20px 28px 24px 28px !important;
}

.phrase-bulk-delete-question {
    margin: 0 0 16px 0 !important;
    font-size: 16px !important;
    color: #374151 !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
}

.phrase-bulk-delete-count {
    color: #ef4444 !important;
    font-size: 18px !important;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%) !important;
    padding: 2px 8px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
}

.phrase-bulk-delete-warning {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    border-left: 4px solid #ef4444 !important;
    margin: 0 !important;
}

.phrase-bulk-delete-warning-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.phrase-bulk-delete-warning-icon {
    margin-top: 2px;
    flex-shrink: 0;
}

.phrase-bulk-delete-warning-text {
    margin: 0 !important;
    font-size: 14px !important;
    color: #dc2626 !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
}

/* Footer styling */
.phrase-bulk-delete-footer {
    border-top: none !important;
    padding: 0 28px 28px 28px !important;
    gap: 12px !important;
}

.phrase-bulk-delete-cancel {
    padding: 12px 20px !important;
    background: rgba(156, 163, 175, 0.1) !important;
    color: #6b7280 !important;
    border: 1px solid rgba(156, 163, 175, 0.3) !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.phrase-bulk-delete-cancel:hover {
    background: rgba(156, 163, 175, 0.2) !important;
    border-color: rgba(156, 163, 175, 0.5) !important;
    color: #374151 !important;
    transform: translateY(-1px) !important;
}

.phrase-bulk-delete-confirm {
    padding: 12px 20px !important;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.phrase-bulk-delete-confirm:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4) !important;
}

.phrase-bulk-delete-confirm:active,
.phrase-bulk-delete-cancel:active {
    transform: scale(0.98) !important;
}

/* Focus states */
.phrase-bulk-delete-close:focus,
.phrase-bulk-delete-cancel:focus,
.phrase-bulk-delete-confirm:focus {
    outline: 2px solid rgba(99, 102, 241, 0.5) !important;
    outline-offset: 2px !important;
}

/* Dark theme adaptations */
[data-bs-theme="dark"] .phrase-bulk-delete-title {
    color: #ccc !important;
}

[data-bs-theme="dark"] .phrase-bulk-delete-question {
    color: #ccc !important;
}

[data-bs-theme="dark"] .phrase-bulk-delete-cancel {
    color: #ccc !important;
}

[data-bs-theme="dark"] .phrase-bulk-delete-cancel:hover {
    color: #ddd !important;
}

/* Responsive */
@media (max-width: 640px) {
    .phrase-bulk-delete-header,
    .phrase-bulk-delete-body,
    .phrase-bulk-delete-footer {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .phrase-bulk-delete-footer {
        flex-direction: column-reverse !important;
        gap: 8px !important;
    }

    .phrase-bulk-delete-cancel,
    .phrase-bulk-delete-confirm {
        width: 100% !important;
        justify-content: center !important;
    }
}
/* ====== Entries - Bulk Delete Confirmation Modal - End ====== */

/* ====== Entries - Phrase Add Tag Modal - Start ====== */
/* Modern modal content */
.phrase-add-tag-modern {
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden !important;
}

/* Header styling */
.phrase-add-tag-header {
    border-bottom: none !important;
    padding: 24px 28px 0 28px !important;
}

.phrase-add-tag-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phrase-add-tag-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.phrase-add-tag-title {
    margin: 0 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    line-height: 1.3 !important;
}

.phrase-add-tag-close {
    width: 36px !important;
    height: 36px !important;
    border: none !important;
    background: rgba(156, 163, 175, 0.1) !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    color: #6b7280 !important;
}

.phrase-add-tag-close:hover {
    background: rgba(156, 163, 175, 0.2) !important;
    color: #374151 !important;
    transform: scale(1.05) !important;
}

/* Body styling */
.phrase-add-tag-body {
    padding: 20px 28px 24px 28px !important;
}

.phrase-add-tag-form {
    margin: 0 !important;
}

/* Phrase Display */
.phrase-add-tag-phrase-display {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.phrase-add-tag-phrase-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 8px;
}

.phrase-add-tag-phrase-text {
    font-size: 16px;
    color: #1f2937;
    font-weight: 500;
    line-height: 1.5;
    font-style: italic;
}

/* Input Group */
.phrase-add-tag-input-group {
    margin-bottom: 20px;
}

.phrase-add-tag-label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 8px !important;
}

.phrase-add-tag-select {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid rgba(209, 213, 219, 0.5) !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    color: #374151 !important;
    background: white !important;
    transition: all 0.2s ease !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 12px center !important;
    background-repeat: no-repeat !important;
    background-size: 16px 16px !important;
    padding-right: 40px !important;
}

.phrase-add-tag-select:focus {
    outline: none !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.phrase-add-tag-select:hover {
    border-color: rgba(156, 163, 175, 0.8) !important;
}

/* Help Text */
.phrase-add-tag-help {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 10px;
    padding: 12px;
    border-left: 3px solid #3b82f6;
}

.phrase-add-tag-help-content {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #1e40af;
    line-height: 1.5;
}

.phrase-add-tag-help-icon {
    margin-top: 2px;
    flex-shrink: 0;
}

.phrase-add-tag-help-link {
    color: #2563eb !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.2s ease !important;
}

.phrase-add-tag-help-link:hover {
    color: #1d4ed8 !important;
    text-decoration: underline !important;
}

/* Footer styling */
.phrase-add-tag-footer {
    border-top: none !important;
    padding: 0 28px 28px 28px !important;
    gap: 12px !important;
}

.phrase-add-tag-cancel {
    padding: 12px 20px !important;
    background: rgba(156, 163, 175, 0.1) !important;
    color: #6b7280 !important;
    border: 1px solid rgba(156, 163, 175, 0.3) !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.phrase-add-tag-cancel:hover {
    background: rgba(156, 163, 175, 0.2) !important;
    border-color: rgba(156, 163, 175, 0.5) !important;
    color: #374151 !important;
    transform: translateY(-1px) !important;
}

.phrase-add-tag-confirm {
    padding: 12px 20px !important;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.phrase-add-tag-confirm:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4) !important;
}

.phrase-add-tag-confirm:active,
.phrase-add-tag-cancel:active {
    transform: scale(0.98) !important;
}

/* Focus states */
.phrase-add-tag-close:focus,
.phrase-add-tag-cancel:focus,
.phrase-add-tag-confirm:focus {
    outline: 2px solid rgba(99, 102, 241, 0.5) !important;
    outline-offset: 2px !important;
}

/* Dark theme adaptations */
[data-bs-theme="dark"] .phrase-add-tag-title {
    color: #ddd !important;
}

[data-bs-theme="dark"] .phrase-add-tag-label {
    color: #ddd !important;
}

[data-bs-theme="dark"] .phrase-add-tag-cancel {
    color: #ccc !important;
}

[data-bs-theme="dark"] .phrase-add-tag-cancel:hover {
    color: #ddd !important;
}

/* Responsive */
@media (max-width: 640px) {
    .phrase-add-tag-header,
    .phrase-add-tag-body,
    .phrase-add-tag-footer {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .phrase-add-tag-footer {
        flex-direction: column-reverse !important;
        gap: 8px !important;
    }

    .phrase-add-tag-cancel,
    .phrase-add-tag-confirm {
        width: 100% !important;
        justify-content: center !important;
    }
}
/* ====== Entries - Phrase Add Tag Modal - End ====== */


/* ====== Entries - Phrase Bulk Tag Modal - Start ====== */
/* Modern modal content */
.phrase-bulk-tag-modern {
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden !important;
}

/* Header styling */
.phrase-bulk-tag-header {
    border-bottom: none !important;
    padding: 24px 28px 0 28px !important;
}

.phrase-bulk-tag-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phrase-bulk-tag-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2);
}

.phrase-bulk-tag-title {
    margin: 0 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    line-height: 1.3 !important;
}

.phrase-bulk-tag-close {
    width: 36px !important;
    height: 36px !important;
    border: none !important;
    background: rgba(156, 163, 175, 0.1) !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    color: #6b7280 !important;
}

.phrase-bulk-tag-close:hover {
    background: rgba(156, 163, 175, 0.2) !important;
    color: #374151 !important;
    transform: scale(1.05) !important;
}

/* Body styling */
.phrase-bulk-tag-body {
    padding: 20px 28px 24px 28px !important;
}

/* Count Display */
.phrase-bulk-tag-count-display {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    border-left: 4px solid #16a34a;
}

.phrase-bulk-tag-count-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #15803d;
    font-weight: 500;
}

.phrase-bulk-tag-count {
    color: #166534 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
}

/* Input Group */
.phrase-bulk-tag-input-group {
    margin-bottom: 20px;
}

.phrase-bulk-tag-label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 12px !important;
}

.phrase-bulk-tag-checkboxes {
    border: 2px solid rgba(209, 213, 219, 0.3);
    border-radius: 12px;
    padding: 16px;
    background: #fafafa;
    max-height: 300px;
    overflow-y: auto;
}

/* Loading State */
.phrase-bulk-tag-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    color: #6b7280;
}

.phrase-bulk-tag-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.phrase-bulk-tag-loading-text {
    font-size: 14px;
    font-style: italic;
}

/* Select All Button */
.phrase-bulk-tag-select-all {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(209, 213, 219, 0.5);
}

.phrase-bulk-tag-select-all-btn {
    width: 100%;
    padding: 10px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    color: #2563eb;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.phrase-bulk-tag-select-all-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-1px);
}

/* Checkbox Items */
.phrase-bulk-tag-checkbox-item {
    margin-bottom: 8px;
}

.phrase-bulk-tag-checkbox {
    display: none;
}

.phrase-bulk-tag-checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    border: 2px solid rgba(209, 213, 219, 0.3) !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    background: white !important;
    margin: 0 !important;
}

.phrase-bulk-tag-checkbox-label:hover {
    border-color: rgba(22, 163, 74, 0.5) !important;
    background: rgba(220, 252, 231, 0.3) !important;
}

.phrase-bulk-tag-checkbox:checked + .phrase-bulk-tag-checkbox-label {
    border-color: #16a34a !important;
    background: rgba(220, 252, 231, 0.6) !important;
}

.phrase-bulk-tag-checkbox-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 1px;
}

.phrase-bulk-tag-checkbox-icon svg {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.phrase-bulk-tag-checkbox:checked + .phrase-bulk-tag-checkbox-label .phrase-bulk-tag-checkbox-icon {
    background: #16a34a;
    border-color: #16a34a;
    color: white;
}

.phrase-bulk-tag-checkbox:checked + .phrase-bulk-tag-checkbox-label .phrase-bulk-tag-checkbox-icon svg {
    opacity: 1;
    transform: scale(1);
}

.phrase-bulk-tag-checkbox-content {
    flex: 1;
    min-width: 0;
}

.phrase-bulk-tag-checkbox-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #1f2937;
    margin-bottom: 2px;
}

.phrase-bulk-tag-checkbox-desc {
    display: block;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

/* Empty State */
.phrase-bulk-tag-empty,
.phrase-bulk-tag-error {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.phrase-bulk-tag-empty-content,
.phrase-bulk-tag-error-content {
    text-align: center;
    max-width: 280px;
}

.phrase-bulk-tag-empty-icon,
.phrase-bulk-tag-error-icon {
    margin: 0 auto 16px auto;
    opacity: 0.5;
}

.phrase-bulk-tag-empty-title,
.phrase-bulk-tag-error-title {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.phrase-bulk-tag-empty-text,
.phrase-bulk-tag-error-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.phrase-bulk-tag-empty-link,
.phrase-bulk-tag-error-retry {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.phrase-bulk-tag-empty-link:hover,
.phrase-bulk-tag-error-retry:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Footer styling */
.phrase-bulk-tag-footer {
    border-top: none !important;
    padding: 0 28px 28px 28px !important;
    gap: 12px !important;
}

.phrase-bulk-tag-cancel {
    padding: 12px 20px !important;
    background: rgba(156, 163, 175, 0.1) !important;
    color: #6b7280 !important;
    border: 1px solid rgba(156, 163, 175, 0.3) !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.phrase-bulk-tag-cancel:hover {
    background: rgba(156, 163, 175, 0.2) !important;
    border-color: rgba(156, 163, 175, 0.5) !important;
    color: #374151 !important;
    transform: translateY(-1px) !important;
}

.phrase-bulk-tag-confirm {
    padding: 12px 20px !important;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.phrase-bulk-tag-confirm:hover {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4) !important;
}

.phrase-bulk-tag-confirm:active,
.phrase-bulk-tag-cancel:active {
    transform: scale(0.98) !important;
}

/* Focus states */
.phrase-bulk-tag-close:focus,
.phrase-bulk-tag-cancel:focus,
.phrase-bulk-tag-confirm:focus {
    outline: 2px solid rgba(99, 102, 241, 0.5) !important;
    outline-offset: 2px !important;
}

/* Dark theme adaptations */
[data-bs-theme="dark"] .phrase-bulk-tag-title {
    color: #ccc !important;
}

[data-bs-theme="dark"] .phrase-bulk-tag-label {
    color: #ccc !important;
}

[data-bs-theme="dark"] .phrase-bulk-tag-cancel {
    color: #ccc !important;
}

[data-bs-theme="dark"] .phrase-bulk-tag-cancel {
    color: #ddd !important;
}

[data-bs-theme="dark"] .phrase-bulk-tag-select-all-btn {
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: #2674fc;
}

[data-bs-theme="dark"] .phrase-bulk-tag-select-all-btn:hover {
    border-color: rgba(59, 130, 246, 0.75);
}

[data-bs-theme="dark"] .phrase-bulk-tag-checkboxes {
    border: 2px solid rgba(209, 213, 219, 0.3);
    background: #222;
}

[data-bs-theme="dark"] .phrase-bulk-tag-checkbox-label {
    color: #ccc !important;
    background: linear-gradient(135deg, #1f2937 0%, #059669 100%) !important;
}

[data-bs-theme="dark"] .phrase-bulk-tag-checkbox-name {
     color: #ddd;
}

[data-bs-theme="dark"] .phrase-bulk-tag-checkbox-desc {
    color: #bbb;
}

/* Responsive */
@media (max-width: 640px) {
    .phrase-bulk-tag-header,
    .phrase-bulk-tag-body,
    .phrase-bulk-tag-footer {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .phrase-bulk-tag-footer {
        flex-direction: column-reverse !important;
        gap: 8px !important;
    }

    .phrase-bulk-tag-cancel,
    .phrase-bulk-tag-confirm {
        width: 100% !important;
        justify-content: center !important;
    }

    .phrase-bulk-tag-checkboxes {
        max-height: 250px;
    }
}
/* ====== Entries - Phrase Bulk Tag Modal - End ====== */


/* ====== Entry Create - Start ====== */
.create-entry-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.create-entry-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-entry-header {
    text-align: center;
    padding: 2rem 2rem 1rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
    position: relative;
}

.create-entry-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.create-entry-title {
    font-size: 2.2rem;
    font-weight: 300;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.create-entry-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
}

.create-entry-subtitle strong {
    color: #667eea;
    font-weight: 600;
}

.create-entry-form {
    padding: 2rem;
}

.create-entry-form .create-textarea {
    min-height: 160px;
    font-family: inherit;
    line-height: 1.6;
}

/* Dark theme adaptations */
[data-bs-theme="dark"] .create-entry-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-entry-header {
    background: linear-gradient(135deg, rgba(144, 205, 244, 0.1) 0%, rgba(167, 139, 250, 0.05) 100%);
}

[data-bs-theme="dark"] .create-entry-title {
    background: linear-gradient(135deg, #90cdf4 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-bs-theme="dark"] .create-entry-subtitle {
    color: #a0aec0;
}

[data-bs-theme="dark"] .create-entry-subtitle strong {
    color: #90cdf4;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .create-entry-container {
        padding: 1rem;
    }

    .create-entry-form {
        padding: 1.5rem;
    }

    .create-entry-title {
        font-size: 1.8rem;
    }
}
/* ====== Entry Create - End ====== */


/* ====== Entry Edit - Start ====== */
.edit-entry-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.edit-entry-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-entry-header {
    text-align: center;
    padding: 2rem 2rem 1rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
    position: relative;
}

.edit-entry-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.edit-entry-title {
    font-size: 2.2rem;
    font-weight: 300;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.edit-entry-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
}

.edit-entry-subtitle strong {
    color: #667eea;
    font-weight: 600;
}

.edit-entry-form {
    padding: 2rem;
}

.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(102, 126, 234, 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;
    min-height: 50px;
}

.edit-form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.edit-form-control::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.edit-textarea {
    min-height: 200px;
    font-family: inherit;
    line-height: 1.6;
}

.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-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, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.edit-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 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);
}

.edit-form-hint {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Input focus animations */
.edit-form-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 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-entry-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-entry-header {
    background: linear-gradient(135deg, rgba(144, 205, 244, 0.1) 0%, rgba(167, 139, 250, 0.05) 100%);
}

[data-bs-theme="dark"] .edit-entry-title {
    background: linear-gradient(135deg, #90cdf4 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-bs-theme="dark"] .edit-entry-subtitle {
    color: #a0aec0;
}

[data-bs-theme="dark"] .edit-entry-subtitle strong {
    color: #90cdf4;
}

[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(144, 205, 244, 0.2);
    color: #e2e8f0;
}

[data-bs-theme="dark"] .edit-form-control:focus {
    border-color: #90cdf4;
    background: rgba(45, 55, 72, 1);
    box-shadow: 0 0 0 0.2rem rgba(144, 205, 244, 0.2);
}

[data-bs-theme="dark"] .edit-form-control::placeholder {
    color: #6b7280;
}

[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);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .edit-entry-container {
        padding: 1rem;
    }

    .edit-entry-form {
        padding: 1.5rem;
    }

    .edit-entry-title {
        font-size: 1.8rem;
    }

    .edit-form-actions {
        flex-direction: column;
    }

    .edit-btn {
        width: 100%;
    }
}
/* ====== Entry Edit - End ====== */
