input[type="text"],
input[type="search"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    background-color: white;
    color: #1f2937;
    transition: all 0.15s ease-in-out;
}

.dark input[type="text"],
.dark input[type="search"] {
    background-color: #1f2937;
    border-color: #4b5563;
    color: #f3f4f6;
}

input[type="text"]:focus,
input[type="search"]:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.dark input[type="text"]:focus,
.dark input[type="search"]:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.btn {
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.dark .btn:focus {
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.5);
}
