/* Alphabet Sorter Tool Styles */

/* Gradient Text for Tool Title */
.gradient-text-sorter {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.5rem;
    font-weight: 700;
}

/* Input Section Styling */
#text-input {
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    resize: none;
    height: 120px;
}

#text-input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

/* Buttons hover effects */
.sort-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

#clear-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Results Section Styling */
#sorted-results {
    font-size: 1.125rem;
    font-weight: 600;
    color: #4b5563;
}
