/* Fictioneer User Upload Dashboard */

.fuu-story-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}


.fuu-story-info-container {

    display:flex;

    gap:25px;

    margin-top:20px;

}



.fuu-story-cover {

    width:180px;

    flex-shrink:0;

}



.fuu-story-cover img {

    width:100%;

    height:auto;

    border-radius:8px;

}



.fuu-no-cover {

    width:180px;

    height:250px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eee;

}



.fuu-story-details {

    flex:1;

}



.fuu-story-card {

    padding:25px;

}



.fuu-chapter-list {

    margin-top:25px;

}


.fuu-story-actions {

    display:flex;

    gap:10px;

    margin-top:20px;

    flex-wrap:wrap;

}



@media(max-width:768px){


    .fuu-story-header {

        flex-direction:column;

        align-items:flex-start;

    }



    .fuu-story-info-container {

        flex-direction:column;

    }



    .fuu-story-cover {

        width:200px;

        margin:auto;

    }


}


/*
/* =====================================================
   TinyMCE DARK MODE
   ===================================================== 

[data-mode="dark"] .mce-edit-area iframe {
    background: #2f2b3b !important;
}


/* TinyMCE iframe body 
[data-mode="dark"] .mce-edit-area iframe html,
[data-mode="dark"] .mce-edit-area iframe body {
    background: #2f2b3b !important;
    color: #ddd !important;
}


/* =====================================================
   TinyMCE LIGHT MODE
   ===================================================== 

[data-mode="light"] .mce-edit-area iframe {
    background: #ffffff !important;
}


[data-mode="light"] .mce-edit-area iframe html,
[data-mode="light"] .mce-edit-area iframe body {
    background: #ffffff !important;
    color: #222 !important;
} */