/* /Components/CarouselControls.razor.rz.scp.css */
/* SVG button styling */
button[b-bjdc3mh0h0] {
    background: none; /* No background */
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor on hover */
    padding: 4px; /* Padding */
    border-radius: 100%; /* Rounded corners */

    display: flex; /* Flexbox for centering */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

    button:hover[b-bjdc3mh0h0] {
        background-color: rgba(0, 0, 0, 0.1); /* Light background on hover */
    }

    button:active[b-bjdc3mh0h0] {
        background-color: rgba(0, 0, 0, 0.2); /* Darker background on click */
    }

    button img[b-bjdc3mh0h0] {
        width: 48px;
        height: 48px;
    }

.dot[b-bjdc3mh0h0] {
    font-size: 3em; /* Font size for dots */
    color: #bbb; /* Default color for inactive dots */
    margin: 0 0.4em; /* Margin between dots */
}

.dot-active[b-bjdc3mh0h0] {
    color: #333; /* Color for active dot */
}
/* /Components/InfoComponent.razor.rz.scp.css */
.panel[b-njgi4qay4a] {
    display: inline-block;
    text-align: left;
    border-radius: 16px;
    background-color: #FBFBFB;
    padding: 24px;
    margin: 24px;
    width: fit-content;
    max-width: 204px;
}

    .panel > h3 > span[b-njgi4qay4a] {
        border-bottom: 2px;
        border-bottom-style: solid;
        border-bottom-color: #1E9481
    }

    .panel > div[b-njgi4qay4a] {
        margin: 24px 0px;
        height: 26px;
        white-space: nowrap;
        vertical-align: middle;
    }

        .panel > div > img[b-njgi4qay4a] {
            float: left;
            margin-right: 16px;
        }

        .panel > div > span[b-njgi4qay4a] {
            line-height: 26px;
        }

a[b-njgi4qay4a] {
    text-align: center;
}

    a > img[b-njgi4qay4a] {
        display: block;
    }
/* /Components/ProjectView.razor.rz.scp.css */
canvas[b-ibwfoph9id] {
    border-radius: 50px;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-width: 0;
    min-height: 0;
    box-sizing: border-box;
}
