.text-shadow-generator-container {
    max-width: 1200px;
    margin: 0 auto;
}

.preview-area {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
    background-color: #ffffff;
}

.preview-text {
    margin: 0;
    transition: all 0.3s ease;
}

.shadow-control {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f8f9fa;
}

.shadow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.shadow-title {
    font-weight: 500;
}

.remove-shadow {
    color: #dc3545;
    background: none;
    border: none;
    cursor: pointer;
}

.color-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-preview {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-shadow-generator-container {
        padding: 1rem;
    }
    
    .preview-area {
        min-height: 150px;
    }
    
    .preview-text {
        font-size: 2rem !important;
    }
}

@media (max-width: 576px) {
    .preview-text {
        font-size: 1.5rem !important;
    }
    
    .color-input-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Preset shadow styles for demonstration */
.soft-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hard-shadow {
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8);
}

.glow-effect {
    text-shadow: 0 0 10px rgba(0, 150, 255, 0.8);
}

.neon-effect {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #ff00de, 0 0 20px #ff00de;
}

.embossed {
    color: #cccccc;
    text-shadow: -1px -1px 0 rgba(255, 255, 255, 0.5), 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.debossed {
    color: #cccccc;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5), -1px -1px 0 rgba(0, 0, 0, 0.5);
}

.double-shadow {
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5), 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.retro-style {
    text-shadow: 2px 2px 0 #ff0000, 4px 4px 0 #0000ff;
}