/* Generell styling */
.lager-search-input {
    padding: 10px;
    width: 400px;
    max-width: 100%;
    margin-right: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
}

.lager-search-container button {
    padding: 10px 15px;
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* Autofyll-boks */
.lager-autocomplete-box {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    width: 400px;
    max-width: 100%;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

/* Status-prikker */
.status-prikk {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    flex-shrink: 0;
}

.prikk-gronn { background-color: #28a745; }
.prikk-rod { background-color: #dc3545; }

/* Resultat-boks og tabell */
.lager-resultat-boks { margin-top: 20px; }

.lager-detalj-tabell {
    width: auto;
    border-collapse: collapse;
    background-color: #fff;
}

.lager-detalj-tabell th, .lager-detalj-tabell td {
    border: 1px solid #ccc;
    padding: 10px 15px;
    text-align: left;
}

.lager-detalj-tabell th { background-color: #f2f2f2; }

/* Melding for ingen treff */
.lager-status-box {
    display: inline-flex;
    align-items: center;
    padding: 15px;
    background: #fff;
    border: 1px solid #ccc;
    margin-top: 15px;
}

.status-tekst { font-weight: bold; }
