
body {
    font-family: sans-serif;
    background: #2c2c2c;
    color: #eee;
    padding: 20px;
}
h1 {
    text-align: left;
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #fff;
}
.tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.tile {
    background: #3a3a3a;
    border: 1px solid #444;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    position: relative;
}
.tile h2 {
    color: #fff;
    margin-top: 0;
}
.entry {
    margin-bottom: 12px;
    border-bottom: 1px dashed #666;
    padding-bottom: 8px;
}
.entry a {
    color: #84c1ff;
}
.toggle-button {
    position: absolute;
    top: 10px;
    right: 12px;
    background: #e00;
    color: white;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    line-height: 1;
}
.reactivate-button {
    background: #0a0;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 0.8em;
}
.info-line {
    text-align: left;
    margin: 5px 0 15px;
    font-size: 0.95em;
    color: #bbb;
}
.info-line strong {
    color: #ff4444 !important;
    font-weight: normal !important;
}
.info-line span, .info-line i {
    color: #ffe97f;
}
input#local-filter-input {
    display: block;
    margin: 0 0 12px 0;
    padding: 6px 10px;
    width: 100%; max-width: 420px;
    max-width: 100%; max-width: 420px;
    font-size: 1em;
    border-radius: 6px;
    border: 1px solid #555;
    background: #444;
    color: #eee;
}
.reactivate-name {
    cursor: pointer;
    color: #ffe97f;
    text-decoration: underline;
}
.show-all-button {
    color: #ff4444 !important;
    font-weight: normal !important;
    cursor: pointer;
    color: #ff4444;
    margin-left: 10px;
    font-weight: normal;
}
#reset-local {
    cursor: pointer;
    font-size: 0.85em;
    color: #ff4444;
    text-decoration: underline;
    display: inline-block;
    margin-left: 10px;
}
@media screen and (max-width: 600px) {
    body {
        padding: 10px;
    }
    h1 {
        font-size: 1.5em;
    }
    .tile {
        font-size: 0.95em;
        padding: 12px;
    }
    .entry {
        font-size: 0.9em;
    }
    input#local-filter-input {
        font-size: 0.95em;
        width: 100%; max-width: 420px;
    }
    .info-line {
        font-size: 0.95em;
        text-align: left;
    }
}


/* Centrale wrapper boven dashboard */
.header-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
}

@media screen and (max-width: 600px) {
    .header-block {
        align-items: flex-start;
        text-align: left;
    }
}


@media screen and (max-width: 1000px) {
    .tiles {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .tile {
        width: 100% !important;
        padding: 12px !important;
        font-size: 1.2em !important;
    }
    .tile h2 {
        font-size: 2.8em !important;
    }
    .entry {
        font-size: 2em !important;
    }
    h1 {
        font-size: 4.4em !important;
    }
    input#local-filter-input {
        font-size: 2em !important;
    }
    .info-line {
        font-size: 1.9em !important;
    }
}
