/* Phone Frame Styles */
.phone-frame {
    width: 375px;
    min-height: 100vh;
    background: #fff;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(0,0,0,0.1);
}

.status-bar {
    height: 44px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600;
}

.status-bar .time {
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 6px;
    align-items: center;
}

.status-icons svg {
    width: 18px;
    height: 18px;
}

.page-number {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 600;
    color: #999;
    z-index: 1000;
    background: rgba(255,255,255,0.9);
    padding: 4px 12px;
    border-radius: 12px;
}
