.title-container{
    margin: 10px auto;
    display: flex;
    justify-content: center;
    width: 80vw;
    font-size: 24px;
    color: var(--text-dark);
}

.edit_note{
   margin: 10px;
   font-size: 16px;
}

.title_tages{
    display: flex;
    width: 80%;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-between;
    color: var(--text-dark);
}


.title-tage{
    display: flex;
    align-items: center;
}

.content{
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 100%;
    padding: 10px;
}

.main_content_intro{
    max-width: 90%;
}

.content p,h1,h2,h3,ul {
    color: var(--text-dark);
    padding: 10px;
}

.content p img,
.content h1 img,
.content h2 img,
.content h3 img
{
    max-width: 100%;
    height: auto;
    max-height: fit-content;
    object-fit: contain;
    margin: 10px auto;
}

.note_main_title{
    font-size: 24px;
}

.content iframe{
    min-width: 80%;
}



code {
    max-width: 1600px;
    overflow-x: auto;
}

.marker{
    /* color: var(--ckeditor-marker); */
    background: var(--ckeditor-marker);
}

.iframe-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.iframe-container {
    position: relative;
    width: 80%; /* 最大寬度為 80% */
    padding-bottom: 45%; /* 16:9 高度比（0.5625 × 80% ≈ 45%） */
    height: 0;
    overflow: hidden;
    max-width: 800px; /* 可選，限制過寬時的最大像素 */
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (min-width:360px){
    .main_container{
        max-width: 70%;
    }
}



@media (min-width:1024px){
    .main_container{
        max-width: 80%;
    }
    .form_label{
        font-size: 18px;
    }

}

@media (min-width:1920px){

}

