.bolohip-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.bolohip-item {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.bolohip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bolohip-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.bolohip-banner {
    width: 100%;
    aspect-ratio: 2/1;
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
}

.bolohip-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bolohip-link h3 {
    margin: 0 0 1rem 0;
    color: #333;
}

.bolohip-link p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.bolohip-filters {
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.search-box {
    flex: 1;
    min-width: 200px;
}

.search-box input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.status-filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
}

.status-filters select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: white;
}

.bolohip-item .status {
    color: #666;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.tag-filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tag-filters select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: white;
    min-width: 200px;
}

/* Add styles for multi-select */
.tag-filters select[multiple] {
    height: auto;
    min-height: 100px;
    padding: 0.25rem;
}

.tag-filters select[multiple] option {
    padding: 0.25rem 0.5rem;
    margin: 0.25rem 0;
    border-radius: 2px;
}

.tag-filters select[multiple] option:checked {
    background-color: #e9ecef;
    color: #495057;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tag {
    background-color: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.cause-area-filters {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.checkbox-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    max-height: none;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
}

.checkbox-label:hover {
    background-color: #e9ecef;
}

.cause-area-checkbox {
    width: 14px;
    height: 14px;
    cursor: pointer;
    margin: 0;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: #333;
    white-space: nowrap;
}

/* Custom scrollbar for the checkbox container */
.checkbox-container::-webkit-scrollbar {
    width: 8px;
}

.checkbox-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.checkbox-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.checkbox-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.select-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.select-help {
    color: #666;
    font-size: 0.8rem;
    font-style: italic;
}