.lmscontainer{
    max-width:960px;
    justify-content: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 3rem auto;
    gap: 1rem;
}

.lms-section{
    font-family:system-ui,-apple-system,sans-serif;
    margin-top:40px;
    color:#898889;
    grid-column: 1 / -1;
    width: 100%;
}

.lms-matrix{
    max-width:960px;
    width:100%;
    border-collapse:collapse;
    font-size:14px;
}

.lms-matrix th{
    background:#2c3e50;
    color:white;
    padding:12px;
    text-align:left;
}

.lms-matrix td{
    padding:10px 12px;
    border-bottom:1px solid #e6e6e6;
    vertical-align:middle;
}

.logo img{
    width:34px;
}

.lms-matrix tbody tr:hover{
    background:#f7f9fb;
}

/* heat indicator bar */

.heat{
    display:inline-block;
    width:10px;
    height:10px;
    margin-right:8px;
    border-radius:2px;
    vertical-align:middle;
}

/* levels */

.level1{background:#dfe6ee;}
.level2{background:#b8d0ec;}
.level3{background:#7fb1e0;}
.level4{background:#4b8fce;}
.level5{background:#1f5fa8;}

/* LMS Project Grid Layout */

.lms-project-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: start;
    margin-bottom: 40px;
}

.lms-content {
    padding-right: 20px;
}

.lms-image {
    justify-self: center;
}

.lms-image img {
    width: 400px;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #898889;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .lms-project-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lms-image {
        justify-self: center;
    }

    .lms-content {
        padding-right: 0;
    }
}

.webdev-image-trigger {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.webdev-image-trigger img {
    display: block;
}

.webdev-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.86);
    z-index: 9999;
    padding: 30px;
}

.webdev-lightbox.is-open {
    display: flex;
}

.webdev-lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
}

.webdev-lightbox img {
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
    border: 10px solid #fff;
    box-sizing: border-box;
    box-shadow: 0 12px 32px rgba(0,0,0,0.45);
    background: #fff;
}

.webdev-lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
}

.webdev-lightbox-open {
    overflow: hidden;
}

