/* /mobile/styles/phone-frame.css */
/* Phone frame and screen styling - full phone resolution */

.phone-frame {
    width: 100vw;
    height: 95vh;
    margin: 0;
    background: #000;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.screen {
    background: var(--mobile-bg);
    border-radius: 0;
    overflow-y: auto;
    overflow-x: hidden;
    height: 95vh;
    width: 100vw;
    position: relative;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

/* Status Bar */
.status-bar {
    background: var(--blue-primary);
    color: white;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}

/* Header */
.header {
    background: var(--blue-primary);
    color: white;
    padding: 20px;
    position: relative;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.month-year {
    font-size: 24px;
    font-weight: 700;
}

.nav-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.today-indicator {
    background: rgba(255,255,255,0.9);
    color: var(--blue-primary);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.discord-login-btn {
    background: #10b981; /* Default green for login */
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    
}

.discord-login-btn:hover {
    opacity: 0.9;
}

.add-callout-btn {
    background: rgba(255,255,255,0.9);
    color: var(--blue-primary);
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    
}

.add-callout-btn:hover {
    background: rgba(255,255,255,1);
}
