/* layout.css - Layout and Navigation */

.phone-container {
    max-width: 390px;
    margin: 20px auto;
    background: var(--warm-white);
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    height: 844px;
}

.screen {
    display: none;
    height: 100%;
    flex-direction: column;
}

.screen.active {
    display: flex;
}

/* Status Bar */
.status-bar {
    background: var(--warm-white);
    padding: 12px 24px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--charcoal);
    font-weight: 500;
}

/* Header */
.header {
    padding: 16px 24px 20px;
    background: var(--warm-white);
}

/* Content Area */
.content {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px 100px;
}

/* Bottom Navigation */
.bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--warm-white);
    border-top: 1px solid var(--gray-pale);
    padding: 8px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-item {
    flex: 1;
    text-align: center;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.nav-item.active .nav-icon {
    color: var(--sage);
}

.nav-item.active .nav-label {
    color: var(--sage);
}

.nav-icon {
    width: 24px;
    height: 24px;
    margin: 0 auto 4px;
    color: var(--gray-medium);
}

.nav-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-medium);
}

/* Floating Action Button */
.fab {
    position: absolute;
    bottom: 80px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.3s;
}

.fab:hover {
    transform: scale(1.05);
    background: var(--sage-dark);
}