body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

nav ul li a {
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffd700;
}

#emailList .email-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
}

#emailList .email-item:last-child {
    border-bottom: none;
}

.animate-fadeIn {
    animation: fadeIn 1s ease-in;
}

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

#editor .mce-content-body {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}