/* Figma Styles */

body {
    font-family: 'Inter', sans-serif;
    padding-top: 80px; /* Add padding to body to avoid content being hidden behind the fixed header */
}

header {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
}

footer {
    border-top: 1px solid #e5e7eb;
}

.popular-tag {
    background-color: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 48rem;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    padding-left: 3rem;
    outline: none;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.search-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgb(59 130 246 / 0.5);
}

.dark .search-input {
    background-color: #374151;
    border-color: #4b5563;
    color: #fff;
}

.search-icon {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 100%;
    color: #9ca3af;
}

.btn-primary {
    background-color: #3b82f6;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
    display: block;
    margin-top: auto;
    transition: background-color .15s ease-in-out;
}

.btn-primary:hover {
    background-color: #2563eb;
}

#to-top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}