body {
    font-family: sans-serif;
    margin: 20px;
    background: #f4f4f4;
}

h1 {
    margin-bottom: 10px;
}

#filterBar {
    margin-bottom: 15px;
}

    #filterBar input,
    #filterBar select {
        padding: 6px;
        margin-right: 10px;
    }

.resultCard {
    background: white;
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 12px;
    border-left: 6px solid #888;
}

    .resultCard.ok {
        border-left-color: green;
    }

    .resultCard.inconsistent {
        border-left-color: red;
    }

    .resultCard h3 {
        margin: 0 0 8px;
    }

    .resultCard p {
        margin: 4px 0;
    }

    .resultCard a {
        margin-right: 10px;
    }

    .resultCard .actions button {
        margin-right: 5px;
    }

#loader {
    text-align: center;
    padding: 20px;
    color: #666;
}


.loginCard {
    background: white;
    border: 1px solid #ccc;
    padding: 20px;
    max-width: 400px;
    margin: 30px auto;
    border-left: 6px solid #888;
}

    .loginCard label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .loginCard input {
        width: 100%;
        padding: 8px;
        margin-bottom: 10px;
    }

    .loginCard button {
        padding: 8px 12px;
        cursor: pointer;
    }

#loginMessage {
    margin-top: 10px;
    color: #333;
}

#summaryTable {
    width: 100%;
    border-collapse: collapse;
    background: white;
    margin-bottom: 20px;
}

    #summaryTable th, #summaryTable td {
        padding: 10px;
        border: 1px solid #ccc;
    }

.status-ok {
    color: green;
    font-weight: bold;
}

.status-inconsistent {
    color: red;
    font-weight: bold;
}

#detailView {
    margin-top: 20px;
}


#detailModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#detailContent {
    background: white;
    padding: 20px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px #333;
}

    #detailContent .closeBtn {
        float: right;
        cursor: pointer;
        font-size: 18px;
        margin-bottom: 10px;
    }