/* Shared styles */
.step-card {
    @apply border border-gray-200 rounded-lg p-6 transition-all hover:shadow-md;
}

.step-header {
    @apply flex items-center mb-4;
}

.step-number {
    @apply flex items-center justify-center w-8 h-8 rounded-full bg-blue-500 text-white font-bold mr-3;
}

.step-title {
    @apply text-xl font-semibold text-gray-800;
}

.step-content {
    @apply text-gray-600;
}

.library-card {
    @apply flex items-center space-x-3 p-3 bg-white rounded-lg shadow-sm hover:shadow-md transition-all;
}

.library-card i {
    @apply flex-shrink-0;
}

.library-card span {
    @apply text-sm font-medium;
}