/* FixNaija Custom Styles */

body {
    background-color: #f8f9fa; /* Bootstrap bg-light */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* Pushes footer to the bottom */
}

/* HTMX Indicator styles */
.htmx-indicator {
    opacity: 0;
    transition: opacity 200ms ease-in;
}
.htmx-request .htmx-indicator {
    opacity: 1;
}
.htmx-request.htmx-indicator {
    opacity: 1;
}

/* Card hover effects */
.card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Drag and Drop Box */
.border-dashed {
    border-style: dashed !important;
    border-width: 2px !important;
}

/* Masonry Grid for Evidence */
.masonry-grid {
    column-count: 2;
    column-gap: 1rem;
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 1;
    }
}