/* Custom styles for WatchUbi */

.gear-item {
    transition: all 0.2s ease-in-out;
}

.gear-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.status-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.in-stock {
    background-color: #d1fae5;
    color: #065f46;
}

.out-of-stock {
    background-color: #fee2e2;
    color: #991b1b;
}

.checking {
    background-color: #fef3c7;
    color: #92400e;
}

/* Form styling */
.form-input {
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}