body {
    background: #f3e1ce;
    font-family: 'Spectral', serif;
    margin: 0;
    padding: 0;
    color: #231f20;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.container {
    /* Remove container styles for full width */
    max-width: none;
    margin: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
    overflow: visible;
    padding: 0;
}

header {
    text-align: center;
    background: #f3e1ce;
    /* padding: 12px 0 16px 0; */
    position: relative;
    z-index: 2;
    width: 100vw;
    border-radius: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}

.claudio-img-bg {
    height: fit-content;
    width: fit-content;
    margin-top: 12px;
    margin-bottom: 6px;
}

.claudio-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #fff6ee;
    object-fit: cover;
    background: #fff6ee;
    box-shadow: 0 2px 8px rgba(80, 40, 20, 0.10);
}

.claudio-name {
    font-family: 'Spectral', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #231f20;
    margin: 0 0 0 0;
    letter-spacing: 1px;
}

h1 {
    font-family: 'Spectral', serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin: 0 0 4px 0;
    color: #231f20;
    letter-spacing: 1px;
}

.subtitle {
    display: none;
}

main {
    padding: 0;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-height: 0;
    width: 100vw;
    height: 100vh;
}

.chat-window {
    background: transparent;
    border: none;
    border-radius: 0 0 18px 18px;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    margin: 0 2vw 12px 2vw;
    padding: 12px 8px 12px 8px;
    font-size: 1.08rem;
    box-shadow: none;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    max-width: none;
    width: auto;
}

.message {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
}

.message.user {
    justify-content: flex-end;
}

.message.bot {
    justify-content: flex-start;
}

.bubble {
    padding: 10px 16px;
    border-radius: 16px 16px 16px 4px;
    background: #fff6ee;
    border: 2px solid #231f20;
    max-width: 75%;
    word-break: break-word;
    font-family: 'Spectral', serif;
}

.message.user .bubble {
    background: #d97a4a;
    color: #fff6ee;
    border-color: #d97a4a;
    border-radius: 16px 16px 4px 16px;
}

.message.bot .bubble {
    background: #fff6ee;
    color: #231f20;
    border-color: #231f20;
    border-radius: 16px 16px 16px 4px;
}

#chat-form {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    margin-left: 2vw;
    margin-right: 2vw;
    position: sticky;
    bottom: 0;
    background: #f3e1ce;
    z-index: 2;
    padding-top: 8px;
}

#user-input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 8px;
    border: 2px solid #d97a4a;
    font-size: 1rem;
    font-family: 'Spectral', serif;
    outline: none;
    background: #fff6ee;
    color: #231f20;
}

#user-input:focus {
    border-color: #231f20;
}

.retry-btn,
button[type="submit"],
.submit-btn {
    background: #d97a4a;
    color: #fff6ee;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 1rem;
    font-family: 'Spectral', serif;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

.retry-btn:hover,
button[type="submit"]:hover,
.submit-btn:hover {
    background: #231f20;
    color: #fff6ee;
}

@media (min-width: 700px) {
    .chat-window {
        font-size: 1.18rem;
        margin-left: auto;
        margin-right: auto;
        width: 96vw;
        max-width: 900px;
    }

    main {
        width: 100vw;
        height: 100vh;
    }

    #chat-form {
        margin-left: auto;
        margin-right: auto;
        width: 96vw;
        max-width: 900px;
    }

}