body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
}

.app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.tree-view {
    font-size: 14px;
}

.tree-view ul {
    list-style: none;
    padding-left: 1rem;
}

.tree-view li {
    padding: 0.25rem 0;
    cursor: pointer;
}
.tree-view li:hover {
    background-color: #f3f4f6;
}

/* Figma preview styles */
.design-frame {
    border: 1px dashed #e5e7eb;
    background-color: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.design-frame-header {
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    font-weight: 500;
}

.design-frame-content {
    padding: 1rem;
}
/* Responsive adjustments */
@media (max-width: 1024px) {
    .app-container {
        flex-direction: column;
    }
    
    .flex-1 {
        width: 100%;
    }
    
    aside {
        width: 100% !important;
        height: auto !important;
    }
}