/* css/saivg-styles.css */
.saivg-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.saivg-container h2 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

#saivg-form {
    display: flex;
    flex-direction: column;
}

#saivg-prompt {
    width: 100%;
    height: 100px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

#saivg-generate, #saivg-check-status {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#saivg-generate:hover, #saivg-check-status:hover {
    background-color: #45a049;
}

#saivg-result {
    margin-top: 20px;
    text-align: center;
}

#saivg-image, #saivg-video {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#saivg-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.saivg-success {
    background-color: #dff0d8;
    color: #3c763d;
}

.saivg-error {
    background-color: #f2dede;
    color: #a94442;
}