/* Ensure the body takes up the full height */
.container {
    margin: 0 auto;
    width: 100%;
    max-width: 550px;
    min-width: 320px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.3),  /* This creates a 30% dark overlay */
        rgba(0, 0, 0, 0.3)
    ), url(/images/ava-pic.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #f5f5f5;
}
body{
    background-color: #333;
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

/* Main content should expand to fill available space */
.content {
    flex: 1;
}
h3{
    font-weight: lighter;
}

.call-controls {
    margin-top: auto;
    text-align: center;
    margin-bottom: 3rem;
}

.call-interface {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.avatar-container{
    text-align: center;
    min-height: 100vh;
}



/* Sticky footer styling */
footer {
    margin-top: auto;
    padding: 10px;
    text-align: center;
    color: #eaeaea;
    font-weight: lighter;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.mic-btn {
    background: #060;
    transition: all 0.3s ease;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    font-size: 30px;
    border: thin solid #eaeaea;
    cursor: pointer;  
}

.mic-btn.active {
    background: #900;
}

.mic-btn:hover {
    background: #090;
}

.mic-btn.active:hover {
    background: #a00;
}

.timer-display {
    color: white;
    font-size: 1.2rem;
    font-family: 'Roboto Flex', sans-serif;
    margin-top: 10px;
    text-align: center;
    position: absolute;
    width: 100%;
    top: -40px;  /* Adjust this value to position the timer above the mic button */
}

.ribbon {
    position: fixed;
    top: 20px;
    right: -55px;
    transform: rotate(45deg);
    background: #FFD700;  /* Golden yellow */
    padding: 5px 80px;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1000;
    font-family: 'Roboto Flex', sans-serif;
    text-transform: uppercase;
}

/* Optional: Add hover effect */
.ribbon:hover {
    background: #FFC800;
}
