body {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.container {
    display: flex;
    height: calc(100vh - 64px);
    position: relative;
}

.main-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px 40px 100px 40px;
}

.view {
    display: none;
}

.view.active {
    display: block;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.empty-state p {
    font-size: 14px;
    color: var(--text-secondary);
}

.app-footer {
    position: fixed;
    bottom: 0;
    left: 220px;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 16px 40px;
    z-index: 100;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.developer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.developer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.developer-text {
    font-size: 13px;
    color: var(--text-secondary);
}

.rugpull-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ef4444;
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.rugpull-btn:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

.btn-icon-small {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-light);
}