/* Lageroppslag Plugin CSS */

/* Tabeller på admin */
.lager-table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 10px;
}

.lager-table td {
    border: 1px solid #ccc;
    padding: 6px 10px;
}

/* CSV-opplastingsmeldinger */
.success { color: green; font-weight: bold; }
.error { color: red; font-weight: bold; }

/* --- Frontend stiler --- */

/* Søkefeltet er nå større og har egen klasse */
.lager-search-input {
    padding: 10px; /* Mer padding for større høyde */
    width: 400px;  /* Bredere enn før */
    max-width: 100%;
    margin-right: 8px;
    font-size: 16px; /* Større skrift */
}

.lager-search-container button {
    padding: 10px 15px; /* Match høyden på inputfeltet */
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.lager-search-container button:hover {
    background-color: #005177;
}

/* Statusindikatorer (prikker) */
.status-prikk {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.prikk-gronn { background-color: #28a745; }
.prikk-rod { background-color: #dc3545; }

.lager-status-tekst {
    font-size: 16px;
    font-weight: bold;
    vertical-align: middle;
}

.lager-resultat-boks {
    margin-top: 20px;
}

/* Resultattabell */
.lager-detalj-tabell {
    width: auto; /* Ikke 100% bredde, kun så bred som innholdet */
    border-collapse: collapse;
    margin-top: 15px;
    background-color: #fff;
}

.lager-detalj-tabell th, .lager-detalj-tabell td {
    border: 1px solid #ccc;
    padding: 10px 15px;
    text-align: left;
    vertical-align: middle;
}

.lager-detalj-tabell th {
    background-color: #f2f2f2;
    font-weight: bold;
}
