.tax-container {
    max-width: 900px;
    width: 90vw;
    height: 90vh;
}

#context-bar input {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

#context-bar button {
    padding: 10px 20px;
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    height: auto;
}

#context-bar button:hover {
    background-color: #1b5e20;
}

/* Ensure marked links open clearly */
.agent-message a {
    color: #1a0dab;
    text-decoration: underline;
    font-weight: bold;
}

/* Override autocomplete from maps api if needed */
.pac-container {
    z-index: 10000 !important;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-family: inherit;
}

/* Modern Header Styles */
.header-title-container {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideDownFade 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(-20px);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.header-title-container h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(90deg, #1b5e20, #388e3c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

@keyframes slideDownFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
