main {
    width: 90vw;
    max-width: 1000px;
    margin: 20px;
    margin-top: 90px;
    margin-left: 50vw;
    transform: translate(-50%);
}
section{
    min-height: 70vh;
}
details {
    border-bottom: 1px solid #45454544;
    padding: 5px;
    overflow: hidden;
    transition: max-height 1s ease-in-out, padding 0.3s linear, background-color 0.1s linear;
    max-height: 40px; /* Matches the height of the summary */
}
details[open] {
    max-height: 500px; /* Expands to show content */
    padding-bottom: 10px; /* Adds padding to make expanded state look better */
}
details p{
    padding-left: 20px;
    padding-bottom: 10px;
    border-left: 1px solid #454545;
}
.more{
    margin-top: 10px;
    margin-left: 16px;
    margin-right: 50px;
}
summary {
    cursor: pointer;
    position: relative;
    padding-left: 40px;
    padding-right: 50px;
    height: 40px; /* Fixed height for the summary */
    line-height: 20px; /* Vertically aligns text */
    list-style: none;
    appearance: none;
    min-height: max-content;
    z-index: 1;
}
summary::marker {
    content: ""; /* Hides default marker */
}
summary::before {
    content: "‣";
    /*content: "❯";*/
    position: absolute;
    top:10px;
    right: 20px;
    color: #e2e2e2;
    font-size: 22px;
    line-height: 1;
    transform: rotate(90deg);
    transition: transform 0.7s ease-in-out;
}
details[open] summary::before {
    transform: rotate(270deg);
}
details p {
    margin: 10px 10px 0 20px;
}
.info{
    display: flex;
    color: rgba(186, 186, 186, 0.779);
    font-size: small;
    justify-content: space-between;
}
ul{
    margin-bottom: 20px;
    margin-left: 20px;
}
.logo{
    max-width: 30px;
    max-height: 25px;
    position: absolute;
    left:7px;
    top:7px;
}
#experience{
    display: flex;
}
.list{
    margin-left: calc(22vw + 10px);
    width: calc(78vw - 40px);
    border-left: 1px solid rgba(88, 88, 88, 0.236);
}
.list .common:nth-child(even) {
    background-color: #25252551; 
}
.list .common:nth-child(odd) {
    background-color: #00000000; 
}
.list .common:nth-child(even):hover {
    background-color: #45454557;
}
.list .common:nth-child(odd):hover {
    background-color: #45454557;
}
.common{
    display: block;
}
.type{
    max-width: 22vw;
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    top:110px;
    left:10px;
    z-index: 30;

}
.type button{
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    background-color: #30303000;
    color: white;
    padding: 2px 5px 2px 5px;
    margin: 2px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    transition-duration: background-color 0.3s;
    border-radius: 3px;
    border: 1px solid rgba(128, 128, 128, 0.448);
}
.type button:hover{
    background-color: #3030309a;
}
#selected{
    background-image: linear-gradient(to right, #00a7a45d, #00a76151);
}

.org_link{
    color: rgba(138, 138, 138, 0.779);
    font-size: small;
    width: calc(100% - 50px);
    display: flex;
    text-decoration: underline;
    margin-left: 40px;
}

.link_arrow{
    padding-top: 2px;
    height: 13px;
    margin-left: 5px;
}

@media screen and (max-width:600px){
    #experience{
        width: auto;
        margin-left: 0vw;
        flex-direction: column;
    }
    .type{
        position: relative;
        left:10px;
        max-width: calc(100vw - 20px);
    }
    .type button{
        font-size: 16px;}
    .list{
        width: 95vw;
        margin-left: 2.5vw;
        border-left: none;
        margin-top: 10px;
    }
    .globe_network{
        bottom: 0vh;
        left: -20vw;;
        max-height: 90vh;
        max-width: 120vw;
    }
}