/* Premium Typography & Theme Base */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Default SareKam Theme colors */
    --theme-primary: #1e293b;
    --theme-primary-rgb: 30, 41, 59;
    --theme-accent: #64748b;
    --theme-bg-light: #ffffff; 
    --theme-card-bg: #ffffff;
    --theme-text-main: #0f172a;
    --theme-text-muted: #64748b;
    --theme-border: #f1f5f9;
    --theme-glow: rgba(30, 41, 59, 0.08);
    
    /* Global Layout Colors */
    --dashboard-bg: #0b0f19;
    --dashboard-card: #111827;
    --dashboard-border: #1f2937;
    --dashboard-text: #f8fafc;
    --dashboard-text-muted: #94a3b8;
    
    /* Device Colors */
    --phone-bezel: #030712;
    --phone-bg: #ffffff;
}

/* Theme configurations with modern high-fidelity gradients */
[data-company-theme="sarekam"] {
    --theme-primary: #1e293b;
    --theme-primary-rgb: 30, 41, 59;
    --theme-accent: #475569;
    --theme-glow: rgba(30, 41, 59, 0.15);
}

[data-company-theme="xernlabs"] {
    --theme-primary: #7c3aed;
    --theme-primary-rgb: 124, 58, 237;
    --theme-accent: #8b5cf6;
    --theme-glow: rgba(124, 58, 237, 0.2);
}

[data-company-theme="choiceconnet"] {
    --theme-primary: #0d9488;
    --theme-primary-rgb: 13, 148, 136;
    --theme-accent: #0f766e;
    --theme-glow: rgba(13, 148, 136, 0.2);
}

[data-company-theme="sareproperty"] {
    --theme-primary: #2563eb;
    --theme-primary-rgb: 37, 99, 235;
    --theme-accent: #1d4ed8;
    --theme-glow: rgba(37, 99, 235, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--dashboard-bg);
    color: var(--dashboard-text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    background-image: 
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.12) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.08) 0px, transparent 50%);
}

.phone-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 2rem 0;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.08);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(15, 23, 42, 0.15);
}

/* Left Sidebar: Org Chart */
.org-chart-tree {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding-left: 0.5rem;
}

.org-node {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

/* Visual Connector Lines */
.org-node::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 24px;
    width: 15px;
    height: 1px;
    background: rgba(15, 23, 42, 0.12);
}

.org-node-children {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 2rem;
    position: relative;
    margin-top: 0.5rem;
}

.org-node-children::before {
    content: '';
    position: absolute;
    left: 17px;
    top: -12px;
    width: 1px;
    height: calc(100% - 24px);
    background: rgba(15, 23, 42, 0.12);
}

/* Root node special styling */
.org-node.root::before {
    display: none;
}

.node-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.node-box:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateX(4px);
}

.node-box.active {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.08);
}

.node-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

/* Node Icons Palette */
.node-sarekam .node-icon-wrapper { background: #2c3338; }
.node-sales .node-icon-wrapper { background: #d97706; }
.node-xern .node-icon-wrapper { background: #6b46c1; }
.node-choice .node-icon-wrapper { background: #059669; }
.node-property .node-icon-wrapper { background: #2563eb; }

.node-sub-home .node-icon-wrapper { background: rgba(37, 99, 235, 0.15); border: 1px solid #2563eb; color: #60a5fa; }
.node-sub-enterprise .node-icon-wrapper { background: rgba(168, 85, 247, 0.15); border: 1px solid #a855f7; color: #c084fc; }
.node-sub-essentials .node-icon-wrapper { background: rgba(245, 158, 11, 0.15); border: 1px solid #f59e0b; color: #fbbf24; }
.node-sub-software .node-icon-wrapper { background: rgba(139, 92, 246, 0.15); border: 1px solid #8b5cf6; color: #a78bfa; }
.node-sub-finance .node-icon-wrapper { background: rgba(16, 185, 129, 0.15); border: 1px solid #10b981; color: #34d399; }
.node-sub-rent .node-icon-wrapper { background: rgba(239, 68, 68, 0.15); border: 1px solid #ef4444; color: #f87171; }
.node-sub-sale .node-icon-wrapper { background: rgba(236, 72, 153, 0.15); border: 1px solid #ec4899; color: #f472b6; }

.node-info {
    display: flex;
    flex-direction: column;
}

.node-title {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dashboard-text);
}

.node-subtitle {
    font-size: 0.7rem;
    color: var(--dashboard-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Center Panel: Phone Simulator */
.phone-simulator-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
}

.phone-mockup {
    width: 380px;
    height: 780px;
    background: var(--phone-bezel);
    border-radius: 48px;
    padding: 12px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.7),
        0 0 0 4px rgba(255, 255, 255, 0.1) inset,
        0 0 20px 2px rgba(99, 102, 241, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.phone-mockup::after {
    /* Phone screen reflection effect */
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
    z-index: 99;
}

/* Phone top notch and camera */
.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: var(--phone-bezel);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.phone-camera {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #111827;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.2) inset;
}

.phone-speaker {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: #374151;
}

/* Phone screen content area */
.phone-screen {
    flex: 1;
    background: var(--theme-bg-light);
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    color: var(--theme-text-main);
}

/* Phone status bar */
.phone-status-bar {
    height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 24px 6px 24px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1f2937;
    z-index: 999;
}

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

/* Phone home swipe bar at bottom */
.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    border-radius: 2px;
    background: #1f2937;
    z-index: 999;
    pointer-events: none;
}

/* Screen States Wrapper */
.screen-state {
    display: none;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    padding-bottom: 70px; /* Space for bottom tab bar */
    height: 100%;
}

.screen-state.active-state {
    display: flex;
}

/* Mockup Specific UI Components */

/* Header style for screen 1 & 2 */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--theme-card-bg);
}

.app-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-logo {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--theme-primary);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 3px 8px var(--theme-glow);
    transition: background 0.3s;
}

.app-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1f2937;
}

.app-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: background 0.2s;
}

.app-btn-icon:hover {
    background: rgba(0, 0, 0, 0.05);
}

.avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--theme-border);
}

/* Tenant Tabs Switcher */
.tenant-tabs {
    display: flex;
    height: 48px; /* Fixed height to accommodate scroll bar and prevent wiggling */
    padding: 0 16px;
    background: var(--theme-card-bg);
    border-bottom: 1px solid var(--theme-border);
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden; /* Lock vertical movement completely */
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; /* Thin scrollbar for Firefox */
    scrollbar-color: rgba(var(--theme-primary-rgb), 0.25) #f1f5f9;
    cursor: grab;
    user-select: none;
    flex-shrink: 0; /* Prevent vertical squashing in flexbox layout */
}

.tenant-tabs::-webkit-scrollbar {
    height: 3px; /* Very thin, elegant height slider */
    display: block;
}

.tenant-tabs::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.tenant-tabs::-webkit-scrollbar-thumb {
    background: rgba(var(--theme-primary-rgb), 0.25);
    border-radius: 10px;
    transition: background 0.2s;
}

.tenant-tabs::-webkit-scrollbar-thumb:hover {
    background: var(--theme-primary);
}

.tenant-tabs.dragging-active, .tenant-tabs:active {
    cursor: grabbing;
}

.tenant-tab {
    padding: 12px 2px 8px 2px; /* reduced bottom padding for scrollbar clearance */
    font-size: 0.88rem;
    font-weight: 600;
    color: #9ca3af;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    height: 100%; /* occupy full container height */
}

.tenant-tab:hover {
    color: var(--theme-primary);
    opacity: 0.85;
}

.tenant-tab.active-tab {
    color: var(--theme-primary);
    border-bottom-color: var(--theme-primary);
    font-weight: 700;
}

/* File/Folder Filter chips row */
.filter-chips-row {
    display: flex;
    align-items: center;
    height: 52px; /* Fixed height to accommodate scroll bar and prevent wiggling */
    padding: 0 16px;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden; /* Lock vertical movement completely */
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; /* Thin scrollbar for Firefox */
    scrollbar-color: rgba(var(--theme-primary-rgb), 0.25) #f1f5f9;
    cursor: grab;
    user-select: none;
    flex-shrink: 0; /* Prevent vertical squashing in flexbox layout */
}

.filter-chips-row::-webkit-scrollbar {
    height: 4px; /* Thin, elegant height slider */
    display: block;
}

.filter-chips-row::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.filter-chips-row::-webkit-scrollbar-thumb {
    background: rgba(var(--theme-primary-rgb), 0.25);
    border-radius: 10px;
    transition: background 0.2s;
}

.filter-chips-row::-webkit-scrollbar-thumb:hover {
    background: var(--theme-primary);
}

.filter-chips-row.dragging-active, .filter-chips-row:active {
    cursor: grabbing;
}

.filter-chip {
    padding: 8px 16px;
    border-radius: 24px;
    background: var(--theme-card-bg);
    border: 1px solid var(--theme-border);
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-chip svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.2px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.filter-chip:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: var(--theme-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.filter-chip:hover svg {
    transform: scale(1.18) rotate(3deg);
}

.filter-chip.active-chip {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-accent) 100%);
    border-color: transparent;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 6px 16px var(--theme-glow);
}

.filter-chip.active-chip svg {
    color: #ffffff;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

/* Search Bar styling */
.search-wrapper {
    padding: 0 16px 12px 16px;
    position: relative;
}

.search-input-container {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 14px;
    padding: 10px 14px;
    gap: 8px;
    border: 1.5px solid transparent;
    transition: all 0.25s ease;
}

.search-input-container:focus-within {
    background: #ffffff;
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 4px var(--theme-glow);
}

.search-input-container svg {
    color: #94a3b8;
    width: 16px;
    height: 16px;
}

.search-input-container input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.85rem;
    color: #0f172a;
    width: 100%;
}

.search-input-container input::placeholder {
    color: #94a3b8;
}

.filter-icon-btn {
    color: #64748b;
    cursor: pointer;
}

/* Cards layout for Feed */
.media-feed-container {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.media-card {
    background: var(--theme-card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.03), 0 2px 8px -2px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.card-preview {
    width: 100%;
    height: 180px;
    position: relative;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay-btn {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-overlay-btn:hover {
    transform: scale(1.12);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.card-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(15, 23, 42, 0.8);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.card-details {
    padding: 12px;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.card-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%;
}

.card-size-badge {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    border-top: 1px solid #f3f4f6;
    padding-top: 8px;
}

.uploader-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.uploader-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.uploader-meta {
    display: flex;
    flex-direction: column;
}

.uploader-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
}

.upload-time {
    font-size: 0.65rem;
    color: #9ca3af;
}

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

/* Floating Bottom Navigation Bar inside Phone */
.phone-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--theme-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 800;
    padding-bottom: 8px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #9ca3af;
    cursor: pointer;
    font-size: 0.65rem;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-item svg {
    width: 20px;
    height: 20px;
}

.nav-item.active-nav {
    color: var(--theme-primary);
}

.nav-item-upload {
    position: relative;
    top: -12px;
}

.upload-btn-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--theme-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px var(--theme-glow);
    transition: background 0.3s, transform 0.2s;
}

.upload-btn-circle:hover {
    transform: scale(1.05);
}

.upload-btn-circle svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* Folder Directory Styling */
.folder-grid {
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.folder-card {
    background: var(--theme-card-bg);
    border: 1px solid var(--theme-border);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.folder-card:hover {
    border-color: var(--theme-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.folder-icon-box {
    margin-bottom: 12px;
    color: var(--theme-accent);
}

.folder-icon-box svg {
    width: 36px;
    height: 36px;
    fill: rgba(75, 85, 99, 0.1);
}

.folder-card-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: #1f2937;
    margin-bottom: 2px;
    line-height: 1.2;
}

.folder-card-items {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

.folder-card-updated {
    font-size: 0.65rem;
    color: #9ca3af;
    margin-top: 8px;
}

.folder-action-dot {
    position: absolute;
    top: 12px;
    right: 8px;
    color: #9ca3af;
}

/* Inside Folder Screen */
.inside-folder-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--theme-card-bg);
}

.inside-folder-title-section {
    padding: 8px 16px;
}

.inside-folder-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #1f2937;
}

.inside-folder-meta {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
    margin-top: 2px;
}

.asset-grid {
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.asset-card {
    background: var(--theme-card-bg);
    border: 1px solid var(--theme-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.asset-thumbnail-container {
    height: 110px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.asset-thumbnail-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asset-tag {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.asset-meta-icon {
    color: var(--theme-accent);
}

.asset-details {
    padding: 10px;
}

.asset-card-title {
    font-weight: 600;
    font-size: 0.8rem;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.asset-card-type {
    font-size: 0.7rem;
    color: #9ca3af;
    margin-top: 2px;
}

/* Screen 4: Media Detail & Collaboration */
.detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--theme-card-bg);
    border-bottom: 1px solid var(--theme-border);
}

.detail-video-container {
    width: 100%;
    background: #000000;
    position: relative;
    aspect-ratio: 16 / 9;
}

.detail-video-container video {
    width: 100%;
    height: 100%;
}

.video-custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.video-progress-bar-wrapper {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.video-progress-filled {
    height: 100%;
    width: 10%; /* dynamic */
    background: var(--theme-primary);
    border-radius: 2px;
    position: relative;
}

.video-progress-handle {
    position: absolute;
    right: -4px;
    top: -2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
}

.video-control-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 0.7rem;
}

.video-controls-left {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.detail-info-section {
    padding: 16px;
    background: var(--theme-card-bg);
    border-bottom: 1px solid var(--theme-border);
}

.detail-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 4px;
}

.detail-owner {
    font-size: 0.8rem;
    color: #4b5563;
    font-weight: 500;
    margin-bottom: 8px;
}

.detail-owner span {
    color: #9ca3af;
    margin: 0 4px;
}

.detail-stats {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
    margin-bottom: 12px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-capsule {
    padding: 6px 12px;
    border-radius: 20px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: 500;
}

.tag-capsule-add {
    padding: 6px 12px;
    border-radius: 20px;
    background: transparent;
    border: 1px dashed #d1d5db;
    color: #9ca3af;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tag-capsule-add input {
    border: none;
    background: transparent;
    outline: none;
    width: 60px;
    font-size: 0.75rem;
    color: #4b5563;
}

/* Comments Section */
.comments-section {
    padding: 16px;
    flex: 1;
}

.comments-header {
    font-weight: 700;
    font-size: 0.85rem;
    color: #1f2937;
    margin-bottom: 12px;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.comment-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.comment-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.comment-content {
    flex: 1;
    background: #f3f4f6;
    padding: 8px 12px;
    border-radius: 12px;
    border-top-left-radius: 2px;
}

.comment-author-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.comment-author {
    font-size: 0.75rem;
    font-weight: 700;
    color: #374151;
}

.comment-time {
    font-size: 0.65rem;
    color: #9ca3af;
}

.comment-text {
    font-size: 0.8rem;
    color: #4b5563;
    line-height: 1.3;
}

/* Comment Input container */
.comment-input-container {
    display: flex;
    align-items: center;
    background: var(--theme-card-bg);
    border: 1px solid var(--theme-border);
    border-radius: 20px;
    padding: 6px 12px;
    gap: 8px;
    margin-top: 8px;
}

.comment-input-container input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.8rem;
    color: #1f2937;
    flex: 1;
}

.comment-send-btn {
    color: var(--theme-primary);
    cursor: pointer;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Action buttons at bottom of Detail View */
.detail-actions-fixed {
    display: flex;
    gap: 10px;
    padding: 12px 16px 20px 16px;
    background: var(--theme-card-bg);
    border-top: 1px solid var(--theme-border);
}

.btn-detail-secondary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--theme-border);
    background: var(--theme-card-bg);
    color: #374151;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-detail-secondary:hover {
    background: #f9fafb;
}

.btn-detail-primary {
    flex: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: var(--theme-primary);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px var(--theme-glow);
    transition: opacity 0.2s;
}

.btn-detail-primary:hover {
    opacity: 0.95;
}

.btn-detail-primary.approved {
    background: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

/* Bottom Sheet drawers */
.bottom-sheet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bottom-sheet-overlay.active-sheet {
    display: block;
    opacity: 1;
}

.bottom-sheet {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 16px 20px 30px 20px;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-sheet-overlay.active-sheet .bottom-sheet {
    bottom: 0;
}

.sheet-drag-handle {
    width: 36px;
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
    margin: 0 auto 16px auto;
}

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

.sheet-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #1f2937;
    width: 100%;
    text-align: center;
}

.sheet-close-btn {
    position: absolute;
    right: 20px;
    top: 24px;
    color: #9ca3af;
    cursor: pointer;
}

/* Smart Upload Form elements */
.upload-drag-zone {
    border: 2px dashed #d1d5db;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    background: #f9fafb;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.upload-drag-zone:hover {
    background: #f3f4f6;
    border-color: var(--theme-primary);
}

.upload-drag-icon {
    color: #6b7280;
    margin-bottom: 8px;
    display: inline-block;
}

.upload-drag-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
}

.upload-drag-subtext {
    font-size: 0.7rem;
    color: #9ca3af;
    margin-top: 4px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #374151;
}

.form-label-meta {
    font-size: 0.7rem;
    color: #9ca3af;
}

.custom-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    position: relative;
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid var(--theme-border);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 10;
    max-height: 150px;
    overflow-y: auto;
    display: none;
}

.custom-select-options.show {
    display: block;
}

.custom-option {
    padding: 10px 14px;
    font-size: 0.8rem;
    color: #4b5563;
    transition: background 0.15s;
}

.custom-option:hover {
    background: #f3f4f6;
}

.form-input {
    width: 100%;
    background: #f3f4f6;
    border: none;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.8rem;
    color: #1f2937;
    outline: none;
}

.form-input::placeholder {
    color: #9ca3af;
}

.btn-sheet-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: var(--theme-primary);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 14px var(--theme-glow);
    margin-top: 10px;
}

/* Upload Progress Simulator inside Sheet */
.upload-progress-container {
    display: none;
    margin-top: 10px;
}

.progress-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--theme-primary);
    transition: width 0.1s linear;
}

/* Share Asset Sheet layout */
.share-asset-info-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9fafb;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 20px;
}

.share-asset-thumbnail {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
}

.share-asset-details {
    flex: 1;
    min-width: 0;
}

.share-asset-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.share-asset-meta {
    font-size: 0.7rem;
    color: #9ca3af;
}

.access-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 20px;
}

.access-setting-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
}

.access-setting-select {
    border: none;
    background: transparent;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    outline: none;
    cursor: pointer;
}

.security-options-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.security-option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.security-option-label-group {
    display: flex;
    flex-direction: column;
}

.security-option-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
}

.security-option-desc {
    font-size: 0.65rem;
    color: #9ca3af;
}

/* Switch Toggle Styling */
.switch-control {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch-control input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: .3s;
    border-radius: 34px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.switch-control input:checked + .switch-slider {
    background-color: var(--theme-primary);
}

.switch-control input:checked + .switch-slider:before {
    transform: translateX(20px);
}

.share-action-buttons {
    display: flex;
    gap: 10px;
}

.btn-share-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--theme-border);
    background: #ffffff;
    color: #374151;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-share-whatsapp {
    flex: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: #25d366; /* WhatsApp brand green color */
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* Glassmorphic Toast Notification */
.toast-notification {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(8px);
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Right Sidebar: State Controller & Event Logger */
.state-control-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.state-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--dashboard-text);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
}

.state-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.state-btn.active-control {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
    color: #4f46e5;
    font-weight: 600;
}

.state-num {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    background: #e2e8f0;
    color: var(--dashboard-text-muted);
}

.state-btn.active-control .state-num {
    background: rgba(99, 102, 241, 0.15);
    color: #4f46e5;
}

.log-panel {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    color: #047857;
    min-height: 180px;
    max-height: 250px;
    overflow-y: auto;
    margin-top: 1.5rem;
}

.log-title {
    font-family: 'Outfit', sans-serif;
    color: var(--dashboard-text);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.log-entry {
    margin-bottom: 4px;
    line-height: 1.4;
    word-break: break-all;
}

.log-timestamp {
    color: #2563eb;
}

/* Helper layout for video cover play icon */
.play-btn-circle-large {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    cursor: pointer;
}

.play-btn-circle-large:hover {
    transform: scale(1.08);
}

/* Enhanced Audio Visualizer Panel */
.audio-visualizer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 24px;
    background: radial-gradient(circle at 50% 50%, #1e293b, #0f172a);
}

.audio-album-art {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-accent, #475569));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.audio-album-art::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(45deg);
    animation: shine 4s infinite linear;
}

@keyframes shine {
    0% { transform: translate(-30%, -30%) rotate(45deg); }
    100% { transform: translate(30%, 30%) rotate(45deg); }
}

.audio-waveform {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 36px;
    margin-bottom: 20px;
}

.wave-bar {
    width: 3px;
    height: 6px;
    background-color: var(--theme-accent, #64748b);
    border-radius: 2px;
    transition: all 0.15s ease;
}

/* Default state wave heights */
.wave-bar:nth-child(1) { height: 8px; }
.wave-bar:nth-child(2) { height: 16px; }
.wave-bar:nth-child(3) { height: 10px; }
.wave-bar:nth-child(4) { height: 22px; }
.wave-bar:nth-child(5) { height: 28px; }
.wave-bar:nth-child(6) { height: 14px; }
.wave-bar:nth-child(7) { height: 20px; }
.wave-bar:nth-child(8) { height: 10px; }
.wave-bar:nth-child(9) { height: 24px; }
.wave-bar:nth-child(10) { height: 12px; }
.wave-bar:nth-child(11) { height: 18px; }
.wave-bar:nth-child(12) { height: 8px; }

/* Active visualizer wave bounce animations */
.audio-visualizer-container.playing .wave-bar {
    background-color: var(--theme-primary);
    animation: bounce-wave 0.8s infinite ease-in-out alternate;
}

.audio-visualizer-container.playing .wave-bar:nth-child(1) { animation-delay: 0.1s; }
.audio-visualizer-container.playing .wave-bar:nth-child(2) { animation-delay: 0.4s; }
.audio-visualizer-container.playing .wave-bar:nth-child(3) { animation-delay: 0.2s; }
.audio-visualizer-container.playing .wave-bar:nth-child(4) { animation-delay: 0.6s; }
.audio-visualizer-container.playing .wave-bar:nth-child(5) { animation-delay: 0.3s; }
.audio-visualizer-container.playing .wave-bar:nth-child(6) { animation-delay: 0.5s; }
.audio-visualizer-container.playing .wave-bar:nth-child(7) { animation-delay: 0.1s; }
.audio-visualizer-container.playing .wave-bar:nth-child(8) { animation-delay: 0.7s; }
.audio-visualizer-container.playing .wave-bar:nth-child(9) { animation-delay: 0.3s; }
.audio-visualizer-container.playing .wave-bar:nth-child(10) { animation-delay: 0.5s; }
.audio-visualizer-container.playing .wave-bar:nth-child(11) { animation-delay: 0.2s; }
.audio-visualizer-container.playing .wave-bar:nth-child(12) { animation-delay: 0.4s; }

@keyframes bounce-wave {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1.3); }
}

.audio-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px var(--theme-glow);
    transition: all 0.2s ease;
}

.audio-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px var(--theme-glow);
}

/* Brand Dropdown Menu styles */
.app-brand.dropdown-trigger {
    cursor: pointer;
    position: relative;
    padding: 6px 10px;
    border-radius: 12px;
    margin-left: -10px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    user-select: none;
}

.app-brand.dropdown-trigger:hover {
    background: #f1f5f9;
}

.brand-chevron {
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* If dropdown is open, rotate chevron */
.app-brand.dropdown-trigger:has(.brand-dropdown-menu.show) .brand-chevron {
    transform: rotate(180deg);
    color: var(--theme-primary);
}

.brand-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 220px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--theme-border);
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15), 0 4px 12px -4px rgba(0, 0, 0, 0.05);
    z-index: 1100;
    padding: 6px;
}

.brand-dropdown-menu.show {
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: dropdownSlideIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.brand-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.brand-dropdown-item:hover {
    background: #f1f5f9;
    transform: translateX(3px);
}

.brand-dropdown-item.active {
    background: rgba(var(--theme-primary-rgb), 0.06);
}

.brand-dropdown-item.active .item-title {
    color: var(--theme-primary);
    font-weight: 700;
}

.brand-dropdown-item .item-logo {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.char-sarekam { background: #1e293b; }
.char-sales { background: #d97706; }
.char-xern { background: #7c3aed; }
.char-choice { background: #0d9488; }
.char-property { background: #2563eb; }

.brand-dropdown-item .item-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.brand-dropdown-item .item-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1f2937;
}

.brand-dropdown-item .item-subtitle {
    font-size: 0.65rem;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ==============================================
   CONTACTS SCREEN (SCREEN 0) STYLES
   ============================================== */
.contacts-list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f1f5f9;
}
.contact-card:active {
    transform: scale(0.98);
    background: #f8fafc;
}
.contact-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}
.contact-info {
    flex: 1;
}
.contact-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
}
.contact-meta {
    font-size: 0.8rem;
    color: #6b7280;
}
.contact-chevron {
    color: #cbd5e1;
}

