html, body {
    height: 100%;
}

/* Tailwind v4'ün .collapse utility'si (visibility: collapse) Bootstrap'in
   navbar collapse'unu eziyor — burada Bootstrap davranışını geri getiriyoruz. */
.collapse {
    visibility: visible;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body > main {
    flex: 1 0 auto;
}

body > footer {
    flex-shrink: 0;
    margin-top: auto;
}

.kategori-etiketi {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 0.375rem;
    font-size: 0.8rem;
    color: #fff;
    background-color: #6b7280;
}

.not-icerik-tam {
    white-space: pre-wrap;
    word-break: break-word;
}

.not-kart {
    transition: box-shadow .15s ease-in-out;
}
.not-kart:hover {
    box-shadow: 0 .375rem 1rem rgba(0,0,0,.075) !important;
}
