/* Concept Screen Styles */
.app-screen-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F8FAFC;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    z-index: 1;
    /* Below the default image by default, can be toggled */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 0;
    /* Removing padding, using Status Bar spacer instead */
}

.app-screen-content.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/* Mock Status Bar */
.status-bar {
    height: 44px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    z-index: 50;
    position: relative;
    /* Ensure it stays atop */
}

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

.chat-screen .status-bar {
    background: #008069;
    color: white;
}

/* Match WA Header */

/* Chat Screen (WhatsApp) */
.chat-screen {
    font-family: 'Inter', sans-serif;
    background: #E5E5E5;
    /* WA backgroundish */
}

.chat-header {
    background: #008069;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-image: radial-gradient(#d1d7db 7%, transparent 7%), radial-gradient(#d1d7db 7%, transparent 7%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-color: #efe7dd;
}

.chat-bubble {
    padding: 10px 14px;
    border-radius: 8px;
    max-width: 85%;
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.chat-bubble.sent {
    background: #d9fdd3;
    align-self: flex-end;
    color: #111;
    border-top-right-radius: 0;
}

.chat-bubble.received {
    background: white;
    align-self: flex-start;
    color: #111;
    border-top-left-radius: 0;
}

/* Support Screen */
.support-screen {
    background: #F8FAFC;
    font-family: 'Inter', sans-serif;
}

.support-header {
    background: white;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.support-grid {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.support-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.support-card i {
    font-size: 1.5rem;
    color: #2563EB;
    background: #EFF6FF;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}