/* Page chrome — content rail, hero overlays, empty states */

.hamilku-hero-overlay {
    position: relative;
}

.hamilku-hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

.hamilku-hero-overlay > * {
    position: relative;
    z-index: 1;
}

.hamilku-empty-state,
.dataNotFound {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 12rem;
    padding: var(--space-6, 24px) var(--space-4, 16px);
    background-color: var(--color-surface-variant, #f5f5f5);
    border: 2px dashed var(--color-outline, #cfcfcf);
    border-radius: var(--shape-md, 12px);
    box-sizing: border-box;
}

.hamilku-empty-state img,
.dataNotFound img {
    width: 45px;
    height: auto;
    margin-bottom: var(--space-3, 12px);
}

.hamilku-empty-state span,
.dataNotFound span {
    color: var(--color-on-surface-variant, #656565);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
    text-align: center;
}
