html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #FFFFFF;
}

#ComposeTarget {
    width: 100%;
    height: 100%;
    outline: none;
}

.app-footer {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    z-index: 100;
    pointer-events: auto;
    white-space: nowrap;
}

.footer-link {
    color: #22C55E;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #3B82F6;
    text-decoration: underline;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.2);
}
