/* Enigma CMS – Custom Styles */

/* ── Layout ───────────────────────────────────────── */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* ── HTMX loading indicator ───────────────────────── */
.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
    display: inline-block;
}

/* ── Admin sidebar ────────────────────────────────── */
.sidebar .nav-link {
    color: #495057;
    border-radius: 0.375rem;
    padding: 0.45rem 0.75rem;
    transition: background-color 0.15s ease;
}

.sidebar .nav-link:hover {
    background-color: #e9ecef;
    color: #212529;
}

.sidebar .nav-link.active {
    background-color: #0d6efd1a;
    color: #0d6efd;
}

/* ── Cards ────────────────────────────────────────── */
.card {
    border-radius: 0.5rem;
}

/* ── Navbar brand ─────────────────────────────────── */
.navbar-brand {
    letter-spacing: -0.02em;
}

/* ── Table actions ────────────────────────────────── */
.table td, .table th {
    vertical-align: middle;
}

/* ── Jumbotron hero ───────────────────────────────── */
.bg-light.rounded-3 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

/* ── Post cards ───────────────────────────────────── */
.card.h-100:hover {
    transform: translateY(-2px);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1) !important;
}

/* ── Footer ───────────────────────────────────────── */
footer {
    margin-top: auto;
}
