.tool-card {
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tab-button {
    transition: all 0.2s ease;
    background-color: #e5e7eb;
}

.tab-button:hover:not(.active) {
    background-color: rgba(59, 130, 246, 0.1);
}

.active {
    background-color: #3b82f6;
    color: white;
}

.dark .tab-button:not(.active) {
    background-color: #4b5563;
}

textarea {
    resize: none;
}

#imagePreview {
    max-height: 200px;
    max-width: 100%;
}
