@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: #111827
}

.email-item:hover .move-btn {
    opacity: 1;
    transition: opacity .3s
}

.move-btn {
    opacity: 0
}

.email-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s
}

.email-content.open {
    max-height: 1500px
}

.tab-active {
    color: #c084fc;
    border-color: #c084fc
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111827;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#loading.hidden {
    display: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #374151;
    border-top: 4px solid #c084fc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    margin-top: 20px;
    font-size: 18px;
    color: #9ca3af;
    font-weight: 500;
}

#mainContent {
    display: none;
}

#mainContent.show {
    display: block;
}