/* Kompetensmatris 360 - layout styles */

html, body {
    height: 100%;
}

.km-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.km-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.km-body {
    display: flex;
    flex: 1 1 auto;
}

.km-sidebar {
    width: 240px;
    flex-shrink: 0;
}

.km-main {
    flex: 1 1 auto;
    min-width: 0;
    background-color: #f8f9fa;
}

.km-nav-link {
    color: #333;
    border-radius: 0;
    padding: 0.65rem 1.1rem;
}

.km-nav-link:hover {
    background-color: #e9ecef;
}

.km-nav-link.active {
    background-color: #0d6efd;
    color: #fff;
    font-weight: 600;
}

@media (min-width: 992px) {
    .km-sidebar {
        display: block !important;
        visibility: visible !important;
        transform: none !important;
    }
}

/* Competence matrix */
.km-matrix {
    min-width: 600px;
}

.km-matrix th.km-matrix-name,
.km-matrix td.km-matrix-name {
    position: sticky;
    left: 0;
    background-color: #fff;
    z-index: 2;
    min-width: 180px;
    white-space: nowrap;
}

.km-matrix thead th.km-matrix-name,
.km-matrix tfoot th.km-matrix-name {
    background-color: #f8f9fa;
}

.km-matrix-col {
    white-space: nowrap;
    font-size: 0.85rem;
}

.km-matrix td {
    position: relative;
}

/* Login page */
.km-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6efd 0%, #084298 100%);
}

.km-login-card {
    width: 100%;
    max-width: 400px;
}
