/* Text to Image Clipboard Styles */

.text-to-image-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    border-radius: 8px;
    background-color: #2d2d2d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.text-to-image-input {
    width: 100%;
    min-height: 150px;
    padding: 1rem;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #1e1e1e;
    color: #ffffff;
    font-family: monospace;
    font-size: 16px;
    line-height: 1.5;
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.text-to-image-input:focus {
    outline: none;
    border-color: #4d90fe;
    box-shadow: 0 0 0 2px rgba(77, 144, 254, 0.2);
}

.text-to-image-input::placeholder {
    color: #666;
    opacity: 1;
}

/* Notification styles */
.text-to-image-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 24px;
    border-radius: 4px;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.text-to-image-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.text-to-image-notification.success {
    background-color: #4caf50;
}

.text-to-image-notification.error {
    background-color: #f44336;
}

.text-to-image-notification.info {
    background-color: #2196f3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-to-image-container {
        margin: 1rem;
        padding: 0.75rem;
    }
    
    .text-to-image-input {
        min-height: 120px;
        font-size: 14px;
    }
    
    .text-to-image-notification {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        text-align: center;
    }
}
