/* --- Container --- */
.ls-goedkeuring-container {
    max-width: 1000px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

/* --- Tabellen --- */
.ls-goedkeuring-container table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.ls-goedkeuring-container th,
.ls-goedkeuring-container td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

.ls-goedkeuring-container th {
    background: #f4f4f4;
}

.ls-goedkeuring-container tr:hover {
    background: #fafafa;
}

/* --- Standaard knoppen --- */
.ls-goedkeuring-container button {
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.ls-goedkeuring-container td[data-label="Info"] {
    text-align: left; /* Optioneel: tekst mooi links uitlijnen */
}

.ls-goedkeuring-container td[data-label="Huurder"] small {
    display: block;
    color: #555;
    font-size: 0.85em;
    margin-top: 2px;
}



/* --- Kleinere actieknoppen: OK en X --- */
.ls-goedkeuring-container button.ls-klein {
    padding: 6px 12px;       /* dezelfde grootte voor OK en X */
    font-size: 14px;          /* zelfde font-size */
    color: #fff;
    background-color: #0073aa;
}

/* Hover effect OK knop */
.ls-goedkeuring-container button.ls-klein:hover {
    background-color: #005177;
}

/* Rode X knop, even groot als OK */
.ls-goedkeuring-container button.ls-klein.rood {
    background-color: #cc4b37;
}

/* Hover effect X knop */
.ls-goedkeuring-container button.ls-klein.rood:hover {
    background-color: #a83224;
}

/* Acties kolom centreren */
.ls-goedkeuring-container td[data-label="Acties"] {
    text-align: center;
}

/* --- Mobiele weergave --- */
@media (max-width: 768px) {

    .ls-goedkeuring-container table {
        border: 0;
    }

    .ls-goedkeuring-container tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        padding: 10px;
    }

    .ls-goedkeuring-container th {
        display: none !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
    }

    .ls-goedkeuring-container td {
        display: block;
        text-align: right;
        padding-left: 50%;
        position: relative;
        border: none;
        border-bottom: 1px solid #eee;
    }

    .ls-goedkeuring-container td:last-child {
        border-bottom: 0;
    }

    .ls-goedkeuring-container td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        top: 8px;
        font-weight: bold;
        text-align: left;
        white-space: nowrap;
    }

    /* Mobiel: acties knoppen centreren */
    .ls-goedkeuring-container td[data-label="Acties"] {
        text-align: center;
        margin-top: 5px;
    }

    /* Mobiel: knoppen op volledige breedte indien gewenst */
    .ls-goedkeuring-container button.ls-klein {
        width: 100%;
        margin-bottom: 5px;
    }
}

	
/* button dashboard */
.ls-btn {
    display:inline-block;
    padding: 8px 8px;
    background-color: #d0e4f5;  /* lichtblauw   #0073aa; standaard blauw */
    color: #000000;   /* zwart */
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
    text-align: center;
}

.ls-btn:hover {
    background-color: #04583C; /* groen bij hover */
    color: #ffffff;   /* wit */
}


.ls-msg-ok {
    padding: 6px 12px;
    background: #d8f5dd;
    border: 1px solid #6ab27b;
    color: #1d6b2f;
    width: fit-content;
    margin: 5px 0 10px 0;
    border-radius: 4px;
    font-size: 13px;
    display: none;
}



.ls-huurder-edit input {
    width: 100%;
    box-sizing: border-box;
}


