:where([class^="ri-"])::before { content: "\f3c2"; }

.search-bar {
    width: 100%;
    padding: 8px 12px 8px 32px;
    background: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
}

.content-card {
    transition: transform 0.2s ease-in-out;
}

.content-card:hover {
    transform: translateY(-4px);
}

.filter-button, .admin-button, .load-more {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-button {
    background: white;
    color: gray;
}

.admin-button {
    background: #4F46E5;
    color: white;
}

.load-more {
    background: white;
    color: #4F46E5;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 16px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
}

.input-label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.input-field {
    width: 100%;
    padding: 8px;
    border: 1px solid gray;
    border-radius: 8px;
}

.cancel-button {
    background: gray;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
}

.login-button {
    background: #4F46E5;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
}
