/* Demo Layout Styles */
.demo-layout {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    padding-top: var(--space-4);
}

.demo-content-side > .demo-title {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 2rem;
}

.speech-bubble .demo-title {
    margin-bottom: 0;
}

.demo-content-side .phone-number-wrapper {
    margin-bottom: 0 !important;
    margin-top: 0;
}

/* Phone Number Color Slider Hover Effect */
.phone-number-wrapper:hover .phone-number {
    transform: none !important;
    filter: none !important;
}

/* Default state - digits use parent gradient but can be overridden */
.phone-number .phone-digit {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block;
}

/* Prevent digit-pop from running after initial animation completes or on hover */
.phone-number-wrapper.digits-animated .phone-number .phone-digit,
.phone-number-wrapper:hover .phone-number .phone-digit {
    animation: none;
}

/* On hover, use color-slide-wave animation */
.phone-number-wrapper:hover .phone-number .phone-digit {
    animation-name: color-slide-wave !important;
}

/* Hover state - animate lighter blue across digits from left to right (much faster animation) */
.phone-number-wrapper:hover .phone-number .phone-digit:nth-child(1) { 
    animation: color-slide-wave 0.4s ease-in-out forwards;
    animation-delay: 0s; 
}
.phone-number-wrapper:hover .phone-number .phone-digit:nth-child(2) { 
    animation: color-slide-wave 0.4s ease-in-out forwards;
    animation-delay: 0.02s; 
}
.phone-number-wrapper:hover .phone-number .phone-digit:nth-child(4) { 
    animation: color-slide-wave 0.4s ease-in-out forwards;
    animation-delay: 0.04s; 
}
.phone-number-wrapper:hover .phone-number .phone-digit:nth-child(5) { 
    animation: color-slide-wave 0.4s ease-in-out forwards;
    animation-delay: 0.06s; 
}
.phone-number-wrapper:hover .phone-number .phone-digit:nth-child(6) { 
    animation: color-slide-wave 0.4s ease-in-out forwards;
    animation-delay: 0.08s; 
}
.phone-number-wrapper:hover .phone-number .phone-digit:nth-child(7) { 
    animation: color-slide-wave 0.4s ease-in-out forwards;
    animation-delay: 0.1s; 
}
.phone-number-wrapper:hover .phone-number .phone-digit:nth-child(9) { 
    animation: color-slide-wave 0.4s ease-in-out forwards;
    animation-delay: 0.12s; 
}
.phone-number-wrapper:hover .phone-number .phone-digit:nth-child(10) { 
    animation: color-slide-wave 0.4s ease-in-out forwards;
    animation-delay: 0.14s; 
}
.phone-number-wrapper:hover .phone-number .phone-digit:nth-child(11) { 
    animation: color-slide-wave 0.4s ease-in-out forwards;
    animation-delay: 0.16s; 
}
.phone-number-wrapper:hover .phone-number .phone-digit:nth-child(12) { 
    animation: color-slide-wave 0.4s ease-in-out forwards;
    animation-delay: 0.18s; 
}

@keyframes color-slide-wave {
    0% {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    50% {
        background: linear-gradient(135deg, #5AAFFF 0%, #1AFFFF 100%);
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    100% {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
}

.demo-content-side .demo-disclaimer {
    color: var(--text-gray);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 15px;
}

.demo-content-side .demo-cta-buttons {
    margin-top: 12px;
    margin-bottom: 0;
}

.demo-content-side .demo-link {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Speech Bubble Styles */
.speech-bubble {
    position: relative;
    background: var(--glass-white, rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    margin-bottom: var(--space-8);
    max-width: 400px;
    align-self: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s;
}

.speech-bubble.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.speech-bubble .demo-title {
    margin: 0;
    color: var(--text-dark);
}

.speech-bubble-tail {
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 12px 0;
    border-color: transparent var(--glass-white, rgba(255, 255, 255, 0.95)) transparent transparent;
    filter: drop-shadow(-2px 0 2px rgba(0, 0, 0, 0.05));
    z-index: 1;
}

.speech-bubble-tail::before {
    content: '';
    position: absolute;
    left: -1px;
    top: -12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 12px 0;
    border-color: transparent rgba(255, 255, 255, 0.98) transparent transparent;
}

.hidden {
    display: none !important;
}

/* iPhone Frame Styles */
.iphone-frame {
    width: 100%;
    max-width: 390px;
    flex-shrink: 0;
    background: #1a1a1a;
    border-radius: 50px;
    padding: 12px;
    box-shadow: 
        0 0 0 2px rgba(0, 0, 0, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.iphone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

@keyframes iphoneShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
    75% { transform: rotate(-2deg); }
}

.iphone-frame.shake {
    animation: iphoneShake 0.35s ease-in-out;
}

.iphone-screen {
    width: 100%;
    aspect-ratio: 9 / 19.5;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 30, 0.98) 100%);
    border-radius: 42px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
}

.iphone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px 4px 20px;
    height: 44px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    z-index: 5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-time {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    letter-spacing: -0.5px;
}

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

.signal-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 10px;
}

.signal-bars span {
    width: 3px;
    background: #FFFFFF;
    border-radius: 1px;
}

.signal-bars span:nth-child(1) {
    height: 4px;
}

.signal-bars span:nth-child(2) {
    height: 6px;
}

.signal-bars span:nth-child(3) {
    height: 8px;
}

.wifi-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 12px;
}

.wifi-icon svg {
    width: 100%;
    height: 100%;
}

.battery-icon {
    width: 24px;
    height: 12px;
    border: 1.5px solid #FFFFFF;
    border-radius: 3px;
    position: relative;
    padding: 1px;
}

.battery-icon::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 6px;
    background: #FFFFFF;
    border-radius: 0 1px 1px 0;
}

.battery-level {
    width: 85%;
    height: 100%;
    background: #34C759;
    border-radius: 1px;
}

/* iOS Phone Dialer Styles */
.ios-phone-dialer {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    padding: 20px 0 32px 0;
    position: relative;
}

.ios-phone-dialer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.dialer-display {
    padding: 24px 20px;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Prevent iOS from auto-detecting phone numbers in dialer display */
.dialer-display,
.dialer-display * {
    -webkit-tap-highlight-color: transparent;
}

.dialer-display a {
    color: inherit !important;
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
    border-bottom: none !important;
}

.phone-number-display {
    font-size: 32px;
    font-weight: 300;
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    letter-spacing: 2px;
    word-spacing: 4px;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    -webkit-text-decoration: none !important;
    -webkit-text-decoration-line: none !important;
    -webkit-text-decoration-style: none !important;
    -webkit-text-decoration-color: transparent !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    border-bottom: none !important;
    -webkit-border-bottom: none !important;
    position: relative;
    display: inline-block;
}

/* Use pseudo-element to visually cover any underline iOS might add */
.phone-number-display::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 3px;
    background: #000000;
    z-index: 1;
    pointer-events: none;
}

/* Also target any auto-wrapped anchor tags iOS might create */
.phone-number-display a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 3px;
    background: #000000;
    z-index: 1;
    pointer-events: none;
}

/* Prevent iOS Safari from styling phone numbers as links */
.phone-number-display,
.phone-number-display:link,
.phone-number-display:visited,
.phone-number-display:hover,
.phone-number-display:active,
.phone-number-display:focus {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    -webkit-text-decoration: none !important;
    -webkit-text-decoration-line: none !important;
    -webkit-text-decoration-style: none !important;
    -webkit-text-decoration-color: transparent !important;
    border-bottom: none !important;
    -webkit-border-bottom: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* Target any auto-generated links iOS might create */
.phone-number-display a,
.phone-number-display a:link,
.phone-number-display a:visited,
.phone-number-display a:hover,
.phone-number-display a:active {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    -webkit-text-decoration: none !important;
    -webkit-text-decoration-line: none !important;
    border-bottom: none !important;
}

.dialer-keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    padding: 0 20px;
    flex: 1;
    align-items: center;
    justify-items: center;
    grid-auto-rows: auto;
}

.dialer-keypad > * {
    justify-self: center;
    align-self: center;
}

.dialer-key {
    width: 65px;
    height: 65px;
    max-width: 65px;
    max-height: 65px;
    min-width: 65px;
    min-height: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    flex-grow: 0;
    box-sizing: border-box;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.dialer-key::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dialer-key:hover::before {
    opacity: 1;
}

.dialer-key:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.95);
    box-shadow: 
        0 1px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.key-number {
    font-size: 26px;
    font-weight: 300;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    line-height: 1;
}

.key-letters {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-top: 3px;
    letter-spacing: 1px;
}

.dialer-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px 0 40px;
    flex-wrap: nowrap;
}

.dialer-action-btn {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    max-width: 64px;
    max-height: 64px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    flex-grow: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.call-btn {
    background: #34C759;
    color: #FFFFFF;
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    max-width: 72px;
    max-height: 72px;
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3);
}

.call-btn:active {
    background: #2FB650;
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(52, 199, 89, 0.4);
}

/* iOS Dynamic Island Styles */
.ios-dynamic-island-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0 12px 0;
    min-height: 72px;
    position: relative;
    z-index: 6;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.ios-dynamic-island-wrapper.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ios-dynamic-island {
    width: 280px;
    height: 52px;
    background: #000000;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    animation: islandPulse 2s ease-in-out infinite;
}

@keyframes islandPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 0 1px rgba(255, 255, 255, 0.1),
            0 4px 12px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 0 0 1px rgba(255, 255, 255, 0.15),
            0 6px 16px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.dynamic-island-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    width: 100%;
    height: 100%;
}

.call-icon-wrapper {
    position: relative;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.call-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(52, 199, 89, 0.3);
    animation: pulseRing 1.5s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.call-icon {
    width: 22px;
    height: 22px;
    color: #34C759;
    position: relative;
    z-index: 1;
}

.call-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}

.call-status {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
}

.call-contact {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
}

.call-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px;
    flex-shrink: 0;
}

.waveform-bar {
    width: 3px;
    background: #34C759;
    border-radius: 1.5px;
    animation: waveform 1.2s ease-in-out infinite;
}

.waveform-bar:nth-child(1) {
    height: 10px;
    animation-delay: 0s;
}

.waveform-bar:nth-child(2) {
    height: 16px;
    animation-delay: 0.2s;
}

.waveform-bar:nth-child(3) {
    height: 12px;
    animation-delay: 0.4s;
}

.waveform-bar:nth-child(4) {
    height: 18px;
    animation-delay: 0.6s;
}

@keyframes waveform {
    0%, 100% {
        transform: scaleY(0.3);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Responsive adjustments for Dynamic Island */
@media (max-width: 768px) {
    .ios-dynamic-island {
        width: 240px;
        height: 48px;
    }
    
    .dynamic-island-content {
        gap: 10px;
        padding: 0 16px;
    }
    
    .call-icon-wrapper {
        width: 24px;
        height: 24px;
    }
    
    .call-icon {
        width: 20px;
        height: 20px;
    }
    
    .call-status {
        font-size: 11px;
    }
    
    .call-contact {
        font-size: 13px;
    }
    
    .call-waveform {
        height: 18px;
        gap: 2.5px;
    }
}

@media (max-width: 480px) {
    .ios-dynamic-island {
        width: 220px;
        height: 44px;
    }
    
    .dynamic-island-content {
        gap: 8px;
        padding: 0 14px;
    }
    
    .call-icon-wrapper {
        width: 22px;
        height: 22px;
    }
    
    .call-icon {
        width: 18px;
        height: 18px;
    }
    
    .call-status {
        font-size: 10px;
    }
    
    .call-contact {
        font-size: 12px;
    }
}

/* Responsive Layout Styles */
@media (max-width: 968px) {
    .demo-layout {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    
    .demo-content-side {
        width: 100%;
        text-align: center;
    }
    
    .speech-bubble {
        max-width: 100%;
        align-self: center;
    }
    
    .speech-bubble-tail {
        left: 50%;
        top: -12px;
        transform: translateX(-50%) rotate(90deg);
        border-width: 12px 12px 0 12px;
        border-color: var(--glass-white, rgba(255, 255, 255, 0.95)) transparent transparent transparent;
    }
    
    .speech-bubble-tail::after {
        left: -12px;
        top: 1px;
        border-width: 12px 12px 0 12px;
        border-color: rgba(255, 255, 255, 0.9) transparent transparent transparent;
    }
    
    .iphone-frame {
        max-width: 390px;
    }
}

/* iPhone Frame Responsive Styles */
@media (max-width: 768px) {
    .iphone-frame {
        max-width: 100%;
        border-radius: 40px;
        padding: 10px;
    }
    
    .iphone-frame::before {
        width: 120px;
        height: 24px;
        border-radius: 0 0 18px 18px;
    }
    
    .iphone-screen {
        border-radius: 36px;
    }
    
    .iphone-status-bar {
        padding: 6px 16px 4px 16px;
        height: 40px;
    }
    
    .ios-phone-dialer {
        padding: 16px 0 24px 0;
    }
    
    .phone-number-display {
        font-size: 28px;
    }
    
    .dialer-keypad {
        gap: 0px;
        padding: 0 16px;
    }
    
    .dialer-key {
        width: 60px;
        height: 60px;
        max-width: 60px;
        max-height: 60px;
        min-width: 60px;
        min-height: 60px;
    }
    
    .key-number {
        font-size: 24px;
    }
    
    .dialer-actions {
        padding: 16px 32px 0 32px;
    }
    
    .dialer-action-btn {
        width: 56px;
        height: 56px;
        min-width: 56px;
        min-height: 56px;
        max-width: 56px;
        max-height: 56px;
    }
    
    .call-btn {
        width: 64px;
        height: 64px;
        min-width: 64px;
        min-height: 64px;
        max-width: 64px;
        max-height: 64px;
    }
}

@media (max-width: 480px) {
    .iphone-frame {
        border-radius: 35px;
        padding: 8px;
    }
    
    .iphone-frame::before {
        width: 100px;
        height: 20px;
        border-radius: 0 0 15px 15px;
    }
    
    .iphone-screen {
        border-radius: 30px;
    }
    
    .iphone-status-bar {
        padding: 5px 14px 3px 14px;
        height: 36px;
    }
    
    .status-time {
        font-size: 14px;
    }
    
    .ios-phone-dialer {
        padding: 12px 0 20px 0;
    }
    
    .phone-number-display {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .dialer-keypad {
        gap: 0px;
        padding: 0 12px;
    }
    
    .dialer-key {
        width: 55px;
        height: 55px;
        max-width: 55px;
        max-height: 55px;
        min-width: 55px;
        min-height: 55px;
    }
    
    .key-number {
        font-size: 22px;
    }
    
    .key-letters {
        font-size: 9px;
    }
    
    .dialer-actions {
        padding: 12px 24px 0 24px;
    }
    
    .dialer-action-btn {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
        max-width: 52px;
        max-height: 52px;
    }
    
    .call-btn {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        max-width: 60px;
        max-height: 60px;
    }
}
