﻿.elementRow {
    display: flex;
    gap: 20px;
    padding: 10px 10px;
    width: 100%;
}

.elementRowText {
    display: flex;
    gap: 20px;
    padding: 10px 10px;
    width: 100%;
    color: var(--main-font-color);
    font-size: var(--main-font-size);
}

    .elementRowText:hover {
        color: var(--main-font-color-hover);
    }

.elementRowTitle {
    display: flex;
    gap: 20px;
    padding: 10px 10px;
    width: 100%;
    color: var(--main-title-color);
    font-size: var(--main-title-size);
}

    .elementRowTitle:hover {
        color: var(--main-title-color-hover);
    }

.theming-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
}

.examples-column {
    flex: 1; /* Takes remaining space */
    overflow-y: auto; /* Scrolls if content overflows */
    height: calc(100vh - 40px); /* Full height minus padding */
}

.menu-column {
    position: fixed; /* Fixes to viewport */
    right: 20px; /* Aligns with container padding */
    top: 20px; /* Aligns with container padding */
    width: 50%; /* Matches your 1fr 1fr grid split */
    max-width: 1000px; /* Optional: cap width for larger screens */
    overflow-y: auto; /* Scrolls if content overflows */
    background-color:darkgray;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.5);
}

/* Theme Selector Box Styles */
.theme-selector-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

    .theme-selector-box select {
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 3px;
        background-color: white;
        flex: 1;
    }

    .theme-selector-box input {
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 3px;
        flex: 1;
    }

    .theme-selector-box button {
        padding: 5px 10px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 3px;
        cursor: pointer;
    }

        .theme-selector-box button:hover {
            background-color: #0056b3;
        }

/* Control Box Styles */
.control-box {
    border: 1px solid #ccc;
    border-radius: 5px;
    
    margin-bottom: 15px;
    background-color: #f9f9f9;
}

.control-box-title {
    font-size: 15px;
    font-weight:300;
    text-indent:10px;
    cursor:pointer;
    width:100%;
    height:35px;
    line-height:35px;
    transition: all 0.2s ease;
}

.control-box-title:hover {
    background:rgba(199,240,255,1);
}

.control-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size:13px;
    height:30px;
    border-top:1px solid rgba(0,0,0,0.25);
}

    .control-row:nth-child(even) {
        background:rgba(0,0,0,0.15);
    }

    .control-row:nth-child(odd) {
        background:rgba(0,0,0,0.05);
    }

    .control-row:hover {
        background:rgb(255, 16, 0, 0.25);
    }


.control-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

    .control-group input {
        margin-right:30px;
    }

    .control-group input[type="color"] {
        width: 30px;
        height: 20px;
        padding: 2px;
        border: 1px solid #ccc;
        border-radius: 3px;
    }

    .control-group input[type="range"] {
        width: 70px;
    }

    .control-group span {
        font-size: 12px;
        margin-right:10px;
    }

.control-label {
    width:230px;
    text-indent:10px;
    border-right:1px solid black;
}