        /* ANTI-FLICKER CSS - ADDED AT BEGINNING */
        body.loading * {
            transition: none !important;
        }

        /* Add smooth transitions for auth state changes */
        #authForms,
        #userInfo,
        #notesForm,
        #notesContainer,
        .members-header,
        .notes-container {
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        /* Prevent initial flash */
        .hidden-initially {
            opacity: 0;
            visibility: hidden;
        }

        /* Hide elements initially to prevent flicker */
        .members-header,
        #authForms,
        #userInfo,
        #notesForm,
        #notesContainer {
            opacity: 0;
            visibility: hidden;
        }

        /* Show elements smoothly when ready */
        .show-smoothly {
            opacity: 1;
            visibility: visible;
        }

        .members-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0.25rem 0.5rem;
        }
        
        .members-header {
            text-align: center;
            margin-bottom: 1.25rem;
            padding-bottom: 0.5rem;
        }
        
        .members-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.75rem;
            letter-spacing: -0.5px;
        }
        
        .members-subtitle {
            color: var(--secondary);
            font-size: 1.15rem;
            font-weight: 400;
            line-height: 1.6;
        }
        
        /* Authentication Forms */
        .auth-forms {
            display: flex;
            gap: 2.5rem;
            margin-bottom: 4rem;
        }
        
        .auth-form {
            flex: 1;
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        
        .auth-form:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
            border-color: var(--primary);
        }
        
        .form-title {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 2rem;
            text-align: center;
        }
        
        /* Notes Form - Only visible when logged in */
        .notes-form {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            margin-bottom: 4rem;
            display: none;
            border: 1px solid var(--border);
        }
        
        .notes-form h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 2rem;
        }
        
        .form-group {
            margin-bottom: 1.75rem;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.6rem;
            font-weight: 600;
            color: var(--text);
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }
        
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: var(--bg);
            color: var(--text);
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        .form-textarea {
            min-height: 140px;
            resize: vertical;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--primary), #2563eb);
            color: white;
            border: none;
            padding: 0.875rem 2.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            font-size: 1rem;
            letter-spacing: 0.3px;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
        }
        
        .submit-btn:active {
            transform: translateY(0);
        }
        
        .auth-switch {
            text-align: center;
            margin-top: 1rem;
            color: var(--secondary);
        }
        
        .auth-switch a {
            color: var(--primary);
            cursor: pointer;
            text-decoration: none;
        }
        
        .auth-switch a:hover {
            text-decoration: underline;
        }
        
        /* User Info */
        .user-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0;
            margin-bottom: 3rem;
            gap: 0;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .user-details {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
            background: linear-gradient(135deg, #dc2626 0%, #2d3b8f 100%);
            border-radius: 24px;
            padding: 3rem 2rem 2rem 2rem;
            position: relative;
            width: 100%;
            min-height: 500px;
        }
        
        .user-avatar {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            color: white;
            font-weight: 700;
            font-size: 2.5rem;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            flex-shrink: 0;
            border: 6px solid white;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            margin-top: -70px;
            position: relative;
            z-index: 10;
        }
        
        .user-name {
            font-weight: 700;
            color: white;
            font-size: 1.8rem;
            margin-top: 1.5rem;
            letter-spacing: 1px;
        }
        
        .user-status {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 0.3rem;
            text-align: center;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .user-stats {
            display: flex;
            gap: 3rem;
            margin-top: 2rem;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 16px;
            padding: 1.5rem 2rem;
            width: 100%;
        }

        .user-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .user-stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .user-stat-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .user-actions {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            width: 100%;
            justify-content: center;
        }

        .logout-btn, .edit-profile-btn {
            background: white;
            border: none;
            color: #1e293b;
            padding: 0.8rem 2.5rem;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            letter-spacing: 0.5px;
            min-width: 120px;
            text-align: center;
        }
        
        .logout-btn:hover, .edit-profile-btn:hover {
            background: #f1f5f9;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        /* Edit Profile Modal */
        .edit-profile-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(4px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .edit-profile-content {
            background: var(--card-bg);
            padding: 3rem 2rem 2rem 2rem;
            border-radius: 24px;
            max-width: 400px;
            width: 90%;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border);
            min-height: 500px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }
        
        .edit-profile-title {
            font-weight: 700;
            color: var(--text);
            font-size: 1.8rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .edit-profile-form {
            width: 100%;
            margin-top: 1.5rem;
        }
        
        .edit-profile-form .form-group {
            margin-bottom: 1.5rem;
        }
        
        .edit-profile-form .form-label {
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .edit-profile-form .form-input {
            background: var(--card-bg);
            border: 1px solid var(--border);
            color: var(--text);
            padding: 0.75rem 1rem;
        }

        .edit-profile-form .form-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        /* Preserve original translucent white appearance for dark theme */
        [data-theme="dark"] .edit-profile-form .form-label {
            color: rgba(255, 255, 255, 0.9);
        }
        [data-theme="dark"] .edit-profile-form .form-input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
        }
        [data-theme="dark"] .edit-profile-form .form-input:focus {
            border-color: white;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
        }
        
        .edit-profile-form .form-input:read-only {
            background: rgba(255, 255, 255, 0.05);
            cursor: not-allowed;
        }
        
        .member-since {
            color: var(--secondary);
            font-size: 0.85rem;
            text-align: center;
            margin-top: 1.5rem;
            margin-bottom: 2rem;
        }

        /* Dark theme: keep translucent white appearance */
        [data-theme="dark"] .member-since {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .edit-profile-actions {
            display: flex;
            gap: 1rem;
            margin-top: auto;
            width: 100%;
            justify-content: center;
        }
        
        .cancel-edit-btn, .save-edit-btn {
            background: white;
            border: none;
            color: #1e293b;
            padding: 0.8rem 2.5rem;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            letter-spacing: 0.5px;
            min-width: 120px;
            text-align: center;
        }
        
        .cancel-edit-btn:hover, .save-edit-btn:hover {
            background: #f1f5f9;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }
        
        /* Avatar picker modal */
        .avatar-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.45);
            z-index: 1200;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .avatar-modal-content {
            background: var(--card-bg);
            padding: 1.5rem;
            border-radius: 12px;
            max-width: 720px;
            width: 100%;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
            border: 1px solid var(--border);
        }

        .avatar-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 12px;
            margin-top: 0.75rem;
        }

        .avatar-grid img {
            width: 72px;
            height: 72px;
            object-fit: cover;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
            transition: transform 0.15s ease, border-color 0.15s ease;
        }

        .avatar-grid img:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
        }

        .avatar-grid img.selected {
            border-color: var(--primary);
            box-shadow: 0 8px 20px rgba(37,99,235,0.14);
        }
        
        /* Notes Display */
        .notes-container {
            margin-top: 3rem;
            margin-bottom: 4rem;
        }
        
        .notes-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--border);
        }
        
        .notes-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .notes-count {
            font-size: 0.95rem;
            color: var(--secondary);
            font-weight: 600;
        }
        
        .notes-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .note-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 1.25rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border);
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .note-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
            border-color: var(--primary);
        }
        
        .note-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
            gap: 1.5rem;
        }
        
        .note-user-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .note-author {
            font-weight: 700;
            color: var(--primary);
            font-size: 0.95rem;
        }

        .note-role {
            display: inline-block;
            margin-left: 0.5rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--secondary);
            background: rgba(0,0,0,0.03);
            padding: 2px 6px;
            border-radius: 999px;
        }
        
        .user-status {
            font-size: 0.75rem;
            color: var(--secondary);
            margin-top: 0.2rem;
        }
        
        .note-date {
            color: var(--secondary);
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .note-time {
            display: block;
            font-size: 0.7rem;
            color: var(--secondary);
            opacity: 0.7;
        }
        
        .note-content {
            color: var(--text);
            line-height: 1.6;
            white-space: pre-line;
            padding: 0.75rem 0;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
        }
        
        .note-actions {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            padding-top: 0.75rem;
            border-top: 1px solid var(--border);
            margin-top: 0.75rem;
            gap: 0.75rem;
        }

        .note-left-actions {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .like-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            color: var(--text);
            transition: all 0.3s ease;
        }

        .like-btn:hover {
            border-color: #1e40af;
            background: rgba(30, 64, 175, 0.05);
        }

        .like-btn.liked {
            background: linear-gradient(135deg, #1e40af, #2563eb);
            color: white;
            border-color: transparent;
        }

        .like-btn.liked:hover {
            background: linear-gradient(135deg, #1e3a8a, #1e40af);
            box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
        }

        .like-count {
            font-size: 0.95rem;
        }
        
        .note-left-actions {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .note-right-actions {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        
        @keyframes heartBeat {
            0% { transform: scale(1); }
            25% { transform: scale(1.3); }
            50% { transform: scale(0.95); }
            75% { transform: scale(1.15); }
            100% { transform: scale(1); }
        }
        
        /* DELETE BUTTON FIX - CRITICAL FIX */
        .delete-btn {
            background: none;
            border: 1.5px solid var(--border);
            color: var(--secondary);
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex !important;
            align-items: center;
            gap: 0.5rem;
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        .delete-btn:hover {
            background: #fee2e2;
            color: #dc2626;
            border-color: #fecaca;
        }
        
        .delete-btn:active {
            transform: scale(0.98);
        }
        
        .no-notes {
            text-align: center;
            color: var(--secondary);
            padding: 4rem 2rem;
            background: var(--card-bg);
            border-radius: 12px;
            border: 2px dashed var(--border);
            font-size: 1.05rem;
        }
        
        /* Sort buttons */
        .sort-options {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }
        
        .sort-btn {
            padding: 0.6rem 1.25rem;
            background: var(--card-bg);
            border: 1.5px solid var(--border);
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .sort-btn:hover {
            background: var(--light);
            border-color: var(--primary);
        }
        
        .sort-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        /* Delete Confirmation Modal */
        .delete-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(4px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .delete-modal-content {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
            max-width: 420px;
            width: 90%;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border);
        }
        
        .delete-modal h3 {
            color: var(--text);
            margin-bottom: 1rem;
            font-size: 1.35rem;
            font-weight: 700;
        }
        
        .delete-modal p {
            color: var(--secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .modal-actions {
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
        }
        
        .cancel-btn {
            background: var(--light);
            color: var(--text);
            border: 1px solid var(--border);
            padding: 0.65rem 1.75rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .cancel-btn:hover {
            background: var(--border);
        }
        
        .confirm-delete-btn {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            color: white;
            border: none;
            padding: 0.65rem 1.75rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .confirm-delete-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
        }
        
        /* Forgot Password Modal */
        .forgot-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(4px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .forgot-modal-content {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
            max-width: 420px;
            width: 90%;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border);
        }
        
        .forgot-modal h3 {
            color: var(--text);
            margin-bottom: 1rem;
            font-size: 1.35rem;
            font-weight: 700;
        }
        
        .forgot-modal p {
            color: var(--secondary);
            margin-bottom: 1.75rem;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .forgot-success {
            display: none;
            color: #10b981;
            margin-top: 1rem;
            padding: 1rem;
            background: #d1fae5;
            border-radius: 8px;
            border: 1px solid #a7f3d0;
            font-weight: 500;
        }
        
        /* Remember Me and Forgot Password */
        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        
        .remember-me {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: var(--text);
            cursor: pointer;
            font-weight: 500;
        }
        
        .remember-checkbox {
            width: 18px;
            height: 18px;
            accent-color: var(--primary);
            cursor: pointer;
        }
        
        .forgot-password-link {
            color: var(--primary);
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .forgot-password-link:hover {
            text-decoration: underline;
            color: #2563eb;
        }
        
        /* Password Input with Toggle */
        .password-input-container {
            position: relative;
            margin-bottom: 1.75rem;
        }
        
        .password-input-container .form-input {
            padding-right: 45px;
        }
        
        .toggle-password {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--secondary);
            cursor: pointer;
            padding: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border-radius: 6px;
        }
        
        .toggle-password:hover {
            color: var(--primary);
            background: rgba(59, 130, 246, 0.1);
        }
        
        .toggle-password:focus {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        
        /* Error messages */
        .error-message {
            color: #dc2626;
            font-size: 0.875rem;
            margin-top: 0.5rem;
            display: none;
            padding: 0.6rem;
            background: #fee2e2;
            border-left: 3px solid #dc2626;
            border-radius: 4px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .members-container {
                padding: 2rem 1rem;
            }
            
            .members-title {
                font-size: 2.2rem;
            }
            
            .auth-forms {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .user-info {
                max-width: 100%;
            }
            
            .user-details {
                padding: 2.5rem 1.5rem 1.5rem 1.5rem;
            }
            
            .user-avatar {
                width: 100px;
                height: 100px;
                margin-top: -50px;
            }

            .user-name {
                font-size: 1.5rem;
                margin-top: 1rem;
            }

            .user-stats {
                gap: 5rem;
                padding: 1rem 1.5rem;
                margin-top: 1.5rem;
            }

            .user-actions {
                margin-top: 3.5rem;
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .logout-btn, .edit-profile-btn {
                padding: 0.7rem 2rem;
                width: 100%;
                max-width: 200px;
            }
            
            .form-options {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            
            .note-actions {
                flex-direction: row;
                gap: 0.5rem;
                justify-content: flex-start;
            }
            
            .note-left-actions {
                gap: 0.5rem;
            }
            
            .note-right-actions {
                display: none;
            }
            
            .delete-btn {
                padding: 0.35rem 0.6rem;
                font-size: 0.75rem;
            }

            .like-btn {
                padding: 0.35rem 0.6rem;
                font-size: 0.75rem;
            }
            
        }
        
        @media (max-width: 480px) {
            .members-title {
                font-size: 1.8rem;
            }
            
            .members-subtitle {
                font-size: 1rem;
            }
            
            .form-title {
                font-size: 1.35rem;
            }
            
            .auth-form {
                padding: 1.5rem;
            }
            
            .user-avatar {
                width: 160px;
                height: 160px;
                font-size: 1.5rem;
                box-shadow: 0 8px 30px rgb(0, 0, 0);
            }

            .note-actions {
                flex-direction: row;
                gap: 0.4rem;
                justify-content: flex-start;
            }

            .note-left-actions {
                gap: 0.4rem;
            }
            
            .like-btn, .delete-btn {
                padding: 0.35rem 0.5rem;
                font-size: 0.7rem;
                white-space: nowrap;
            }

            .like-count {
                font-size: 0.85rem;
            }
            
            .note-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .note-date {
                text-align: right;
            }
            
            .sort-options {
                flex-wrap: wrap;
            }
        }
        
        /* CRITICAL FIX FOR DELETE BUTTON VISIBILITY */
        .note-card .note-actions {
            display: flex !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        .note-card .delete-btn {
            display: inline-flex !important;
            visibility: visible !important;
            opacity: 1 !important;
        }