.all{
    position: relative;
        height: auto;
        max-width: 1000px;
        /* min-width: 500px; */
        top: 30px;
        left: 50%;
            transform: translate(-50%);
    /* outline: 1px solid maroon; */
}

.Interface-panel{
    /* outline: 3px double rgb(233, 233, 233); */
    position: relative;
        width: 100%;
        /* min-height: 900px; */
        height: auto;
        max-width: 1000px;
        display: flex;
        flex-direction: column;
}

/* ---- */
.linker-title{
    display:flex;
        align-items: center;
        gap: 0px;
        box-sizing: border-box;
        padding: 3px 3px;
        justify-content: center;
}
.linker-title-text{
    width: auto;
    height: auto;
    padding: 7px;
    /* outline: 1px solid; */
    /* font-family: "Fredericka the Great", serif; */
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    text-decoration: none;
        color: #292929;
        letter-spacing: 2px;
}
.linker-title-text:hover{
    /* color: gray; */
    /* color: rgb(159, 24, 71); */
    text-decoration: underline;
}


.head-logo{
    position: relative;
        width: 50%;
        left: -10%;
}

.things{
    position: relative;
        min-height: 1400px;
        width: 100%;
        height: auto;
        top: 10px;
    border-top: 1px solid #dcdcdc;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.things > n {
    display: block;
}

.switch-row-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 20px;
    border-bottom: 1px solid #e9e9e9;
    overflow-x: auto;
    scrollbar-width: none;
}

.switch-row-container::-webkit-scrollbar {
    display: none;
}

.switch-title {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 14px;
    color: #555555;
    cursor: pointer;
    white-space: nowrap;
    margin: 0 15px;
    letter-spacing: 1px;
    user-select: none;
    transition: color 0.2s ease;
}
.switch-title:hover {
    /* color: #323232; */
    color: rgb(159, 24, 71);
}
.embed-content-view {
    width: 100%;
    flex-grow: 1;
    min-height: 450px;
    border: none;
    display: block;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .all {
        width: 92%;
        top: 15px;
    }
    .linker-title {
        flex-wrap: wrap;
        gap: 5px;
    }
    .switch-row-container {
        justify-content: flex-start;
        padding: 12px 10px;
    }
    .switch-title {
        margin: 0 10px;
        font-size: 13px;
    }
    .embed-content-view {
        min-height: 400px;
    }
}

.switch-title {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 14px;
    color: #555555;
    cursor: pointer;
    white-space: nowrap;
    margin: 0 15px;
    letter-spacing: 1px;
    user-select: none;
    transition: color 0.2s ease, border-bottom 0.2s ease;
}

.switch-title:hover {
    color: rgb(159, 24, 71);
}
.switch-title.active {
    color: rgb(159, 24, 71);
    font-weight: bold;
    /* border-bottom: 2px solid rgb(159, 24, 71); */
    padding-bottom: 2px;
}