/* Gedeelde fullscreen-styling voor overzichtstabellen. Geladen na de scoped-css bundle zodat
   deze regels de per-pagina .mars-grid-shell hoogtebeperking kunnen overschrijven. */

.mars-grid-tools {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.marsds-grid-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.fullscreen-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 auto;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 0.55rem;
    background: #ffffff;
    color: #334155;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
}

.fullscreen-button:hover {
    border-color: rgba(37, 99, 235, 0.3);
    color: #1d4ed8;
}

.fullscreen-icon::before {
    content: "\26F6";
    font-size: 1.2rem;
    line-height: 1;
}

.is-fullscreen .fullscreen-icon::before {
    content: "\00D7";
    font-size: 1.55rem;
}

.mars-grid-shell.is-fullscreen,
.marsds-grid-shell.is-fullscreen,
.inkoop-grid-shell.is-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 1100;
    width: 100vw;
    height: 100dvh;
    max-height: none;
    box-sizing: border-box;
    border-radius: 0;
    padding: 1rem;
    background: #ffffff;
}

.mars-grid-shell.is-fullscreen .grid,
.marsds-grid-shell.is-fullscreen .grid,
.inkoop-grid-shell.is-fullscreen .grid {
    max-height: none;
}
