.iframe_section {
    background-color: white;
    width: 56vw;
    padding: 0px 30px 0px 30px;
    border-radius: 8px;
    box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.2);
    margin-top: 0.5vw;
}

.iframe_section h2 {
    color: #000D44;
}

.iframe {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    max-height: 80vh;
    aspect-ratio: 16 / 9;
}

.iframe_image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.iframe_container {
    /* background-color: white; */
    aspect-ratio: 16 / 9;
}

.iframe_mobile {
    width: 100%;
    height: 100%;
    display: none;
}

.iframe_bottom {
    height: 18vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2vw;
}

.bottom_section {
    height: 100%;
    width: 50%;
}

.bottom_section h2 {
    color: #000D44;
}

#id_tester {
    height: 20px;
    width: 258px;
    border: 2px solid #737999;
    padding: 12px 16px 12px 16px;
    border-radius: 8px;
    font-size: 16px;
}

#id_tester:hover {
    border-color: #EE686A;
}

#id_tester:active {
    border-color: #000D44;
}

#id_tester:focus {
    border-style: none;
}

#id_tester:visited {
    border-style: none;
}

.log-entry {
    border: 2px solid #ccc;
    margin: 5px;
    padding: 10px;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: pre-wrap;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    color: #00051C;
}

.log-entry:hover {
    background-color: #e0e0e0;
}

  .log-entry.expanded {
    background-color: #e0e0e0;
  }

.arrow-icon {
    width: 15px;
    height: 15px;
    fill: #000;
    transition: transform 0.3s ease;
}

.iframe_textarea {
    box-sizing: border-box;
    height: 10vh;
    width: 100%;
}

/* Media query half desktop */
@media (min-width: 660px) and (max-width: 1100px) {
    .iframe_section {
        order: -1;
        margin: 0.5vw 0.5vw 0 0.5vw;
        padding: 0px 30px 2vw 30px;
        background-color: white;
        height: auto;
        width: auto;
    }

    .iframe_bottom_full {
        display: none;
    }
    .iframe_container {
        max-height: 50vh;
    }
}

/* Media query mobile */
@media (max-width: 660px) {
    .iframe_section {
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        height: auto;
        display: flex;
        flex-wrap: nowrap;
        background-color: white;
        width: 98vw;
        border-radius: 8px;
        box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.2);
        padding-bottom: 1vw;
    }

    .iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 9 / 16;
    }

    .iframe_image {
        display: none;
    }

    .iframe_container {
        aspect-ratio: 9 / 16;
    }

    .iframe_mobile {
        display: block;
        width: 100%;
        height: 100%;
        aspect-ratio: 9 / 16;
    }

    #id_tester {
        height: 20px;
        width: 80%;
        border: 2px solid #737999;
        padding: 12px 16px 12px 16px;
        border-radius: 8px;
        font-size: 16px;
    }

    .iframe_textarea {
        box-sizing: border-box;
        width: 100%;
    }

    .bottom_section {
        height: 100%;
        width: 100%;
    }

    .iframe_bottom {
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        padding-bottom: 1vh;
    }

}