/* Selection display styles */
.selected-elements {
    text-align: center;
    margin: 40px 0;
    padding: 25px;
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.selected-elements p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #666;
}

#selectedList {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.selected-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transition: transform 0.2s ease;
}

.selected-tag:hover {
    transform: translateY(-1px);
}

.random-element-container {
    text-align: center;
    margin: 20px 0;
}

.custom-inputs {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(145deg, #f0f4f8, #e2e8f0);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.custom-inputs h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 1.3rem;
    font-weight: 600;
}

.input-group {
    margin-bottom: 20px;
}

.input-group:last-child {
    margin-bottom: 0;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 600;
    font-size: 1rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
    resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #a0aec0;
    font-style: italic;
}

.input-group textarea {
    min-height: 100px;
    max-height: none;
}

