/* Flutter App Wrapper Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#flutter-app-container {
    height: calc(100vh - 60px);
    width: 100%;
    padding-top: 20px;
    /* Add extra padding for Flutter app bar */
}

/* Ensure Flutter app takes full available space */
.flutter-app {
    width: 100%;
    height: 100%;
}

/* Loading state for Flutter app */
.flutter-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #flutter-app-container {
        height: calc(100vh - 60px);
    }
}

@media (max-width: 480px) {
    #flutter-app-container {
        height: calc(100vh - 60px);
    }
}