.container {
    max-width: 1200px;
    margin: 2rem auto; 
    padding: 0 1rem;
}

/* Tab Styles for Multiple Animals */
.animal-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    background: #f8f9fa;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #666;
}

.animal-tab:hover {
    background: #f0f0f0;
    border-color: #bbb;
}

.animal-tab.active {
    background: white;
    border-color: #2A5934;
    border-bottom: 2px solid white;
    color: #2A5934;
    margin-bottom: -2px;
}

.animal-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.animal-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
