@font-face {
    font-display: swap;
    font-family: Swiss Post Sans;
    font-weight: 700;
    src: url(https://fonts.post.ch/swiss-post-sans/v1/SwissPostSans-Bold.woff2) format("woff2"), url(https://fonts.post.ch/swiss-post-sans/v1/SwissPostSans-Bold.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: Swiss Post Sans;
    font-weight: 400;
    src: url(https://fonts.post.ch/swiss-post-sans/v1/SwissPostSans-Regular.woff2) format("woff2"), url(https://fonts.post.ch/swiss-post-sans/v1/SwissPostSans-Regular.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: Swiss Post Sans;
    font-weight: 300;
    src: url(https://fonts.post.ch/swiss-post-sans/v1/SwissPostSans-Light.woff2) format("woff2"), url(https://fonts.post.ch/swiss-post-sans/v1/SwissPostSans-Light.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: Frutiger Neue for Post;
    font-weight: 700;
    src: url(https://fonts.post.ch/swiss-post-sans/v1/SwissPostSans-Bold.woff2) format("woff2"), url(https://fonts.post.ch/swiss-post-sans/v1/SwissPostSans-Bold.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: Frutiger Neue for Post;
    font-weight: 400;
    src: url(https://fonts.post.ch/swiss-post-sans/v1/SwissPostSans-Regular.woff2) format("woff2"), url(https://fonts.post.ch/swiss-post-sans/v1/SwissPostSans-Regular.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: Frutiger Neue for Post;
    font-weight: 300;
    src: url(https://fonts.post.ch/swiss-post-sans/v1/SwissPostSans-Light.woff2) format("woff2"), url(https://fonts.post.ch/swiss-post-sans/v1/SwissPostSans-Light.woff) format("woff")
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Swiss Post Sans', Arial, sans-serif;
    background: #4C4C4C;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.consultation-card {
    width: 100%;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.status-section {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    color: white;
    text-align: center;
    padding: 40px 20px 20px 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 80%, rgba(0,0,0,0.0) 100%);
    pointer-events: none;
    z-index: 2;
}

.status-title {
    font-size: 7vw;
    font-weight: 950;
    margin-bottom: 8px;
}

.status-subtitle {
    font-size: 7vw;
    font-weight: 950;
    margin-bottom: 20px;
}

.status-details {
    font-size: 5vw;
    opacity: 0.9;
}

/* Status Colors */
.status-available .status-section {
    background: #2E7D32;
}

.status-occupied .status-section {
    background: #D32F2F;
}

.status-agents-busy .status-section {
    background: #F57C00;
}

.status-offline .status-section {
    background: #757575;
}

.error {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #d32f2f;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 4px;
    max-width: 90%;
    text-align: center;
}

#clientId {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    color: #666;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 6px;
    border-radius: 3px;
    display: none;
}
