﻿.page {
    display: flex;
    flex-direction: row;
}

.sidebar {
    width: 250px;
    background-color: #343a40;
    color: white;
}

.content {
    flex: 1;
}

.top-row {
    background-color: #f8f9fa;
    height: 50px;
    display: flex;
    align-items: center;
}

.nav-link {
    color: white;
}

    .nav-link.active {
        background-color: #495057;
    }

.navbar {
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

    .nav-list li a {
        color: white;
        text-decoration: none;
        font-weight: bold;
    }

        .nav-list li a.active {
            text-decoration: underline;
        }


.section-box {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 3rem;
}

.responsive-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-image {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 300px;
    border-radius: 1rem;
    object-fit: contain;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 100%;
    max-width: 400px;
}

.toolbar-border {
    border: 2px solid #ccc;
    border-radius: 0.75rem;
    background-color: transparent;
}

.image-card {
    flex: 1 1 300px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    max-width: 300px;
}
