.tshirt-designer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tshirt-designer-form textarea {
    width: 100%;
    min-height: 150px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

.tshirt-design-result {
    margin-top: 20px;
    text-align: center;
}

.tshirt-image-container {
    margin-bottom: 20px;
}

.tshirt-image-container img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.tshirt-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.tshirt-designer-loading {
    text-align: center;
    padding: 20px;
}

.tshirt-designer-loading .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .tshirt-actions {
        flex-direction: column;
    }
    
    .tshirt-actions .button {
        width: 100%;
        margin-bottom: 10px;
    }
}