/* iPhone 15 Frame Styling */
.iphone-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.iphone-frame {
    width: 375px;
    height: 812px;
    background-color: #000;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 30px;
    background-color: #000;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

#app-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.iphone-bottom-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 5px;
    background-color: #f1f1f1;
    border-radius: 3px;
    z-index: 10;
}

.home-indicator {
    width: 100%;
    height: 100%;
    border-radius: 3px;
}

/* Common App Styling */
.app-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    max-width: 100%;
    height: 100vh;
    overflow-y: auto;
    background-color: #f8f9fa;
    position: relative;
}

.status-bar {
    height: 44px;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.app-header {
    background-color: white;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    position: sticky;
    top: 44px;
    border-bottom: 1px solid #e5e7eb;
    z-index: 40;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #e5e7eb;
    z-index: 40;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.75rem;
}

.bottom-nav-item.active {
    color: #3b82f6;
} 