.table-list {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

    .table-list th,
    .table-list td {
        padding: 8px 12px;
        border-bottom: 1px solid #ccc;
        text-align: left;
    }

    .table-list th {
        background-color: #f5f5f5;
        font-weight: bold;
    }

    .table-list tr:hover {
        background-color: #f0f8ff;
    }

/* --- STATUS KLEUREN --- */

.status-inorde {
    color: #2e7d32; /* groen */
    font-weight: 600;
}

.status-vandaag {
    color: #ef6c00; /* oranje */
    font-weight: 600;
}

.status-telaat {
    color: #c62828; /* rood */
    font-weight: 600;
}

/* --- LINKS --- */

.actions a {
    margin-right: 12px;
    text-decoration: none;
    color: #0066cc;
}

    .actions a:hover {
        text-decoration: underline;
    }

/* --- AUTOCOMPLETE (Perenual) --- */

.autocomplete-results {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    width: 300px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 4px;
    border-radius: 4px;
}

.result-item {
    display: flex;
    gap: 10px;
    padding: 6px;
    cursor: pointer;
    align-items: center;
    border-bottom: 1px solid #eee;
}

    .result-item:hover {
        background-color: #f0f8ff;
    }

    .result-item img {
        width: 40px;
        height: 40px;
        object-fit: cover;
        border-radius: 4px;
    }
nav.navbar .navbar-brand img.logo-small {
    height: 32px !important;
    width: auto !important;
    max-height: 32px !important;
    display: block !important;
    object-fit: contain !important;
}
.plant-thumb {
    cursor: pointer;
    transition: transform 0.15s ease;
}

    .plant-thumb:hover {
        transform: scale(1.05);
    }
@keyframes leafSwing {
    0%, 80%, 100% {
        transform: rotate(0deg);
    }

    85% {
        transform: rotate(7deg);
    }

    90% {
        transform: rotate(-5deg);
    }

    95% {
        transform: rotate(3deg);
    }
}

.logo-periodic {
    animation: leafSwing 10s ease-in-out infinite;
    transform-origin: bottom center; /* Bujanie od dołu */
}