/* Custom styles for tools.waydream.io */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Tool tags */
.tool-tag {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    background-color: #f3f4f6;
    color: #6b7280;
    border-radius: 9999px;
    white-space: nowrap;
}

.category-card:hover .tool-tag {
    background-color: #eff6ff;
    color: #2563eb;
}

/* FAQ details styling */
details summary::-webkit-details-marker {
    display: none;
}

details summary {
    list-style: none;
}

/* Stripe loading spinner */
.spinner {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Button disabled state */
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
