.inter-text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


html, body {
    margin: 0;
}

body {
    display: flex;
    height: 100vh;
    width: 100vw;

    overflow-y: auto;
    background-color: #121212;
    scrollbar-color: rgb(14, 12, 12) transparent;
}

.MainFrame_EntriesFrame {
    width: 100%;
    height: 91%;
    padding-top: 4px;
}

.MainFrame_EntriesFrame_Entries {
    width: 95%;
    height: 97%;


    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;


    margin-left: auto;
    margin-right: auto;

    display: flex;
    flex-wrap: wrap;

    align-content: start;
    justify-content: center;

    
    gap: 3% 2%;
}

.MainFrame_EntriesFrame_Entries::-webkit-scrollbar{
    display: none;
}



#Clone-Entry {
    display: none;
}

.MainFrame_EntriesFrame_Entries_Entry {
    width: 350px;
    height: 400px;


    background-color: #181818;
    border: 1px solid #252525 ;
    border-radius: 10px;

    transition: 250ms;
}



.MainFrame_EntriesFrame_Entries_Entry_Header {
    width: 100%;
    height: 14%;
    margin-top: 10px;

    align-items: center;

    display: flex;
}

.MainFrame_EntriesFrame_Entries_Entry_HeaderLeft {
    display: flex;
    width: 50%;
    height: 100%;

    align-items: center;
}

.MainFrame_EntriesFrame_Entries_Entry_HeaderRight {
    display: flex;
    width: 50%;
    height: 100%;

    align-items: center;
    justify-content: right;
}

.MainFrame_EntriesFrame_Entries_Entry_Header_Title {
    color: white;

    font-size: 25px;
    font-weight: 800;

    margin-top: 0;
    margin-bottom: 0;

    width: fit-content;


    padding-left: 25px;
    padding-right: 1%;
    padding-top: 1%;
    padding-bottom: 1%;

    transition: 250ms;
}

.MainFrame_EntriesFrame_Entries_Entry_Header_TextBox {
    color: white;


    font-size: 10px;
    font-weight: 700;

    margin-top: 0;
    margin-bottom: 0;
    margin-left: 5px;


    width: fit-content;
    height: fit-content;


    padding: 4px 13px;
    border-radius: 10px;

    transition: 250ms;
}

.opened-entry {
    background-color: #14b04d;
}

.closed-entry {
    border: 1px solid #2d3139;
}

.long-entry {
    background-color: #14b04d;
}

.short-entry {
    background-color: #d37426;
}

.Open-Type {
    margin-left: 0;
    margin-right: 19px;
}

.MainFrame_EntriesFrame_Entries_Entry_ImgFrame {
    width: 100%;
    height: 42%;

    display: flex;
    justify-content: center;
}

.MainFrame_EntriesFrame_Entries_Entry_ImgFrame_Img {
    width: 90%;
    height: 100%;
    box-shadow: 0 5px 10px rgb(46, 46, 46);

    border-radius: 15px;
}

.MainFrame_EntriesFrame_Entries_Entry_DataFrame {
    width: 100%;
    
    height: 29%;


    padding-bottom: 15px;

}

.MainFrame_EntriesFrame_Entries_Entry_DataFrame_div {

    display: flex;
    width: 100%;
    height: 54%;

}

.MainFrame_EntriesFrame_Entries_Entry_DataFrame_div_div {
    width: 50%;
    height: 100%;
}

.MainFrame_EntriesFrame_Entries_Entry_DataFrame_div_div_nameText {
    font-size: 10px;
    font-weight: 600;
    color: #707581;

    align-items: center;

    display: flex;

    margin-top: 10px;
    margin-bottom: 0;

    padding-left: 30px;
}

.MainFrame_EntriesFrame_Entries_Entry_DataFrame_div_div_icon {
    height: 16px;
    width: fit-content;


    margin-right: 2px;
}

.MainFrame_EntriesFrame_Entries_Entry_DataFrame_div_div_dataText {
    padding-left: 35px;
    font-size: 15px;
    font-weight: 700;
    color: white;

    margin-top: 8px;

}

.green-text {
    color: #24c55f;
}

.red-text {
    color: #c01c10;
}

.MainFrame_EntriesFrame_Entries_Entry_MiscFrame {
    width: 100%;
    height: 10%;

    
    border-top: 1px solid #2d3139;

    display: flex;
    justify-content: right;
    align-items: center;

    gap: 5px;
}

.MainFrame_EntriesFrame_Entries_Entry_MiscFrame_Button {
    width: 17%;
    height: 57%;
    

    background-color: #181818;
    border: 1px solid #252525 ;

    color: rgb(177, 177, 177);

    font-size: 12px;
    font-weight: 600;

    border-radius: 8px;
    transition: 250ms;

    margin-top: 0;
    margin-right: 5px;
}


.MainFrame_EntriesFrame_Entries_Entry_MiscFrame_Button:hover {
    cursor: pointer;
}


.MainFrame_TradeEntryView {
    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.089); /* Semi-transparent background */
    backdrop-filter: blur(10px);
    overflow-y: scroll;
    position: fixed;

    display: none;

}

.example-text {
    color: gray;
}

.green-text {
    color: #00ff99;
}

.truncate {
  overflow: hidden;          /* hides extra text */
  text-overflow: ellipsis;   /* adds "..." at the end */
  white-space: nowrap;       /* prevents text wrapping */
}

.log_frame {
    width: 45%;
    height: 1000px;

    margin-bottom: 60px;
    margin-top: 30px;

    margin-left: auto;
    margin-right: auto;

    background-color: #181818;
    border: 1px solid #252525 ;
}

.entry-title {
    

    width: 92%;

    margin-left: auto;
    margin-right: auto;

    display: block;
    font-size: 19px;
    font-weight: 600;
    color: white;


    margin-top: 25px;
    margin-bottom: 10px;
}


.img-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: gray;
    width: 92%;
    height: 300px;

    margin-left: auto;
    margin-right: auto;

    border: 3px dashed #353535 ;
    border-radius: 10px;

    visibility: hidden;

    padding: 0px;
    cursor: pointer;
    transition: 250ms;
   
}

.img-frame:hover {
    border-color: #00ff998a;
}

.upload-icon {
    height: 40px;
    width: 40px;

    padding: 20px;
    border-radius: 100%;

    color: gray;

    background-color: #1f1f1f;

}

.upload-img {


    display: block;
    font-size: 18px;
    font-weight: 500;
    color: white;


    margin-top: 15px;
    margin-bottom: 10px;

}

.upload-description {

    display: block;
    font-size: 15px;
    font-weight: 500;
    color: gray;


    margin-top: 0;
    margin-bottom: 10px;

}

.flex-box {
    display: flex;
}

.entry-flexdiv {
    width: 100%;
    height: 100px;
    gap: 0;

}

.flexbox-div {
    width: 50%;
    height: 100%;

}

.entry-title2 {
    margin-left: 36px;
    margin-bottom: 5px;

    display: block;
    font-size: 19px;
    font-weight: 600;
    color: white;
}

.edit-icon {
    float: right; 
    padding-right: 20px;

    
}

.icon {
    width: 20px;
    height: 20px;
    padding: 3px;

    color: gray;
    border-radius: 8px;
    transition: 250ms;
}
.icon:hover {
    cursor: pointer;
    color: white;
    background-color: #00ff99;
}

.dropdown-button {
    margin-left: 36px;
    
    align-content: center;

    padding-left: 10px;

    margin-top: 0;
    margin-bottom: 0;

    font-size: 15px;
    font-weight: 400;
    color: white;

    width: calc(100% - 65px);
    height: 40px;

    background-color: #1f1f1f;
    border: 1px solid #333333;

    border-radius: 10px;
}

.dropdown-button:hover {
    cursor: pointer;
}

.dropdown-icon {
    float: right; 
    padding-right: 15px;


    margin-top: 0;
}

.icon2 {
    width: 15px;
    height: 15px;
    padding: 3px;



    color: gray;
    border-radius: 8px;
    transition: 250ms;
}

.dropdown-div {
    position: relative; display: inline-block;
    width: calc(100% - 54px);
    
    align-content: center;

    display: none;

    margin-top: 5px;
    margin-bottom: 0;

    margin-left: 35px;
    height: fit-content;

    background-color: #1f1f1f;
    border: 1px solid #333333;

    border-radius: 10px;
}

.dropdown-item {
    font-size: 15px;
    font-weight: 400;
    color: white;

    width: 100%;
    height: 40px;

    text-align: left;
    border: none;
    border-radius: 10px;

    background-color: transparent;

    transition: 250ms;
}

.dropdown-item:hover {
    background-color: #00ff99;
    color: black;
    cursor: pointer;
}

.entry-input {

    width: 92%;
    height: 35px;

    margin-left: auto;
    margin-right: auto;

    display: block;
    font-size: 16px;
    font-weight: 500;
    color: white;

    padding-left: 10px;

    background-color: #1f1f1f;
    border: 1px solid #333333;

    border-radius: 10px;

    margin-bottom: 30px;
}

.entry-input:focus {
    outline: 1px solid #00ff99;
}

.entry-textarea {

    width: 92%;
    height: 175px;

    margin-left: auto;
    margin-right: auto;

    display: block;
    font-size: 16px;
    font-weight: 500;
    color: white;

    padding-left: 10px;

    background-color: #1f1f1f;
    border: 1px solid #333333;

    scrollbar-color: black transparent;

    border-radius: 10px;

    resize: none;

    margin-bottom: 30px;
}

.entry-textarea:focus {
    outline: 1px solid #00ff99;
}

.bottom-div {
    width: 100%;
    height: 80px;
    
    justify-content: center;
    gap: 15px;
}

.bottom-buttons {

    width: 40%;
    height: 50px;

    display: block;
    font-size: 16px;
    font-weight: 500;

    padding-left: 10px;

    border: 1px solid #333333;

    background-color: black;
    color: white;

    scrollbar-color: black transparent;

    border-radius: 10px;

    resize: none;

    margin-bottom: 30px;
}

.bottom-buttons:hover {
    cursor: pointer;
}

.green-button {
    background-color: #00ff99;
    color: black;
}

.MainFrame_Settings {
    position: absolute;
    display: inline-block;

    justify-items: center;
    align-content: center;

    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.63);
}

.settings-div {
    background-color: #1f1f1f;
    border: 1px solid #333333;

    border-radius: 18px;

    width: 500px;
    height: 500px;
}

.entry-description {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: gray;

    width: 92%;

    margin-left: auto;
    margin-right: auto;


    margin-top: 5px;
    margin-bottom: 10px;
}

.close-icon {
    height: 20px;
    width: 20px;

    transition: 250ms;
}

.close-icon:hover {
    cursor: pointer;
    color: white;
}

.settings-input {
    width: 80%;
    height: 40px;

    margin-left: 15px;
    margin-right: auto;


    font-size: 15px;
    font-weight: 500;
    color: white;

    padding-left: 10px;

    background-color: #121212;
    border: 1px solid #333333;

    border-radius: 10px;

    margin-bottom: 0;
}

.settings-input:focus {
    outline: 1px solid #00ff99;
}

.settings-button {
    width: 35px;
    height: 33px;

    font-size: 20px;
    font-weight: 600;
    color: white;

    background-color: #121212;
    border: 1px solid #333333;

    border-radius: 10px;

    margin-top: 0;

}

.settings-icon {

    display: inline;
    width: 29px;
    height: 27px;

    padding: 5px;

    font-size: 20px;
    font-weight: 600;
    color: white;

    background-color: #00ff99;
    border: 1px solid #333333;

    color: black;

    border-radius: 10px;

    margin-bottom: -14px;
}

.settings-icon:hover {
    cursor: pointer;
}

.settings-list {
    width: 460px;
    height: 300px;

    margin-left: 15px;
    margin-top: 10px;

    overflow: auto;
    scrollbar-color: black transparent;
}

.settings-listitem {
    width: 96%;
    height: 30px;

    padding-top: 10px;
    align-content: center;

    font-size: 15px;
    font-weight: 500;
    color: white;

    margin-top: 5px;
    margin-bottom: 5px;

    padding-left: 10px;

    background-color: #121212;
    border: 1px solid #333333;

    border-radius: 10px;
}

.remove-icon {
    margin-top: -3px;
}

.remove-icon:hover {
    background-color: rgba(255, 65, 65, 0.144);
    color: red;
}


.SideBar {
    background-color: #121212;
    width: 260px;
    height: 100%;
    border-right: 1px solid #252525;

}

.SideBar_Title {
    color: white;
    font-size: 35px;
    font-weight: 700;


    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;

    padding-left: 30px;

    display: block;
    text-decoration: none;



}

.SideBar_Title:hover {
    cursor: pointer;
}

.SideBar_List {
    text-decoration: none;
    list-style: none;

    height: 60%;

    padding: 0;
    margin: 0;
}

.SideBar_List_ListItem {
    display: flex;
    align-items: center;
    padding-left: 30px;
    margin-bottom: 0;
    margin-top: 5px;

    margin-left: auto;
    margin-right: auto;

    border-radius: 9px;

    width: 160px;

    height: 40px;
    transition: 350ms;
}

.SideBar_List_ListItem:hover {
    background-color: #31363f;
    cursor: pointer;
}

.SideBar_List_ListItem:hover p {
    color: white;
}



.selected-item {
    background-color: #00ff99;
}

.selected-item p {

    color: black;
}

.SideBar_List_ListItem_Img {
    width: 12.5%;
    height: 60%;
    margin-right: 10px;
}

.align-center {
    align-content: center;
    justify-items: center;
}

.SideBar_List_ListItem_Text {
    color: rgb(177, 177, 177);
    font-size: 15px;
    font-weight: 500;
}

.anchor {
    text-decoration: none;
}

.MainFrame {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background-color: #121212;
}

.MainFrame_HeadFrame {
    width: 100%;
    display: flex;
}

.MainFrame_Title {

    font-size: 2.5vw;
    font-weight: 700;
    color: white;

    width: 68%;
    padding-left: 2.3%;

    margin-top: 20px;
    margin-bottom: 2px;
}

.MainFrame_HeadFrame_ButtonsDiv {
    display: flex;
    gap: 2%;

    justify-content: right;
    align-items: center;



    width: 30%;
}

.MainFrame_HeadFrame_ButtonsDiv_Button {
    height: 47%;
    width: 40%;
    display: inline-block;

    background-color: #21252bce;
    color: white;

    font-size: 15px;
    font-weight: 600;
    border: none;

    margin-top: 15px;
    margin-right: 30px;

    transition: 250ms;

    border-radius: 8px;
}
#TradeOpen_Button {
    color: #121228;
    
    background-color: #00ff99;



}
#TradeClose_Button {
    color: rgb(243, 233, 233);
    
    border: 1px solid #312e2e;
}

.MainFrame_HeadFrame_ButtonsDiv_Button:hover {
    cursor: pointer;
    transform: scale(1.03);
}


.MainFrame_Frame {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 30px;


    width: 100%;
    height: 100%;

    margin-top: 10px;
}


.StatsFrame_Title {
    color: white;
    font-size: 26px;
    font-weight: 600;
    margin-top: 15px;
    width: fit-content;
    height: fit-content;

    margin-left: 20px;
    margin-bottom: 0;
}

.StatsFrame_text {
    color: white;
    font-size: 15px;
    font-weight: 500;

    width: fit-content;
    height: fit-content;


    margin-left: 20px;
}

.StatsFrame_textTitle {
    text-decoration: underline;
}

.ChartFrame {
    margin-top: auto; 
    margin-bottom: auto; 

    height: 100%; 
    width: 20%;

    align-content: center;
}

.Doughnut_Chart {
    width: 100%; 
    height: 100%;

}

.flex-box {
    display: flex;
}

.stats_halfdiv {
    width: 50%;

}

.stats-title {
    padding-left: 20px;

    margin-bottom: 0;
    color: gray;
    font-size: 16px;
    font-weight: 500;
}

.stats-text {
    padding-left: 20px;

    color: white;
    margin-top: 10px;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0;
}

#WLRChart {

    margin-bottom: -10px;
    margin-left: 10px;
    margin-top: 6px;
    width: fit-content;
    height: fit-content;
}

#PLChart {

    margin-bottom: -10px;
    margin-left: 10px;
    margin-top: 6px;
    width: fit-content;
    height: fit-content;
}



.bar {
    width: 95%;
    height: 10px;

    margin-left: auto;
    margin-right: auto;

    margin-top: 10px;
    background-color: #262626;
    border-radius: 10px;
}

.bar-fill {
    width: 50%;
    height: 100%;
    border-radius: 10px;
    background-color: #00ff99;
}

.bar-text {
    color: white;
    font-size: 13px;
    font-weight: 700;

    padding-right: 25px;

    float: right;
    margin-bottom: 0;
    margin-top: 5px;


}

.trades-div {
    height: 500px;
    width: 96%;

    border-radius: 10px;

    margin-top: 30px;

    background-color: #181818;
    border: 1px solid #252525 ;
    margin-left: auto;
    margin-right: auto;
}

.trade-frame {
    width: 97%;
    height: 60px;

    border-bottom: 1px solid #31363f;

    margin-left: auto;
    margin-right: auto;


    gap: 3px;
    
}

.trade-text {
    padding-left: 15px;
    width: 14.285714285714285714285714285714%;

    margin-top: 0;
    margin-bottom: 0;

    align-content: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.example-text {
    color: gray;
}

.green-text {
    color: #00ff99;
}

.truncate {
  overflow: hidden;          /* hides extra text */
  text-overflow: ellipsis;   /* adds "..." at the end */
  white-space: nowrap;       /* prevents text wrapping */
}