.animal-generator-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.generator-panel {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.animal-details-panel {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.current-animal-image {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.current-animal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.generate-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    font-weight: 600;
    margin-bottom: 15px;
}

.generate-button:hover {
    background: #3e8e41;
    transform: translateY(-2px);
}

.additional-options {
    display: flex;
    gap: 10px;
}

.secondary-button {
    background: #f0f0f0;
    color: #333;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    flex: 1;
    transition: all 0.2s;
}

.secondary-button:hover {
    background: #e0e0e0;
}

.animal-specs {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}

.animal-specs th, .animal-specs td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.animal-specs th {
    width: 40%;
    font-weight: 600;
    color: #555;
}

.animal-fun-fact {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.animal-fun-fact h3 {
    margin-top: 0;
    color: #2c3e50;
}

#animal-name {
    color: #2c3e50;
    margin-top: 0;
}

@media (max-width: 768px) {
    .animal-generator-container {
        flex-direction: column;
    }

    .current-animal-image {
        height: 250px;
    }
}
