body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: #1a1a2e;
    font-family: Arial, sans-serif;
}

button {
    background-color: #e94560;
    color: white;
    border: none;
    padding: 12px 24px;
    margin: 8px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #c73652;
}

#dogContainer {
    margin-top: 24px;
    width: auto;
    height: auto;
    color: white;
}

#description {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    width: auto;
    height: auto;
    color: white;
}

/* Simple spinning animation */
.spinner {
    width: 25px;
    height: 25px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #e94560;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Visual feedback for disabled buttons */
button:disabled {
    background-color: #555;
    cursor: not-allowed;
    opacity: 0.7;
}