:root {
    --bgColor: #555;
    --bgColor2: #bbb;
    --bgColor3: #696969;
    --textColor: #fff;
}
.allTextsContainer .seperator {
    margin-top: 25px;
    margin-bottom: 25px;
    border-bottom: 0.15rem dashed #ddd;
}
.textAreaDiv {
    position: relative;
}
.timeMin {
    position: absolute;
    right: 18px;
    top: 7px;
    width: 65px;
    opacity: 0.4;
}
.timeMin:hover {
    opacity: 1;
}
.textAreaDiv .form-select {
    background-position: right 0.2rem center !important;
    padding: 0rem 1.3rem 0rem 0.4rem !important;
    font-size: 14px;
}
.codeEditor {
    padding: 10px 15px;
    color: var(--textColor);
    padding: 0px;
    border-radius: 3px;
    position: relative;
    /* eger textArea degilse asagidakileri ac */
    /* max-height: 200px; 
    overflow: auto;
    white-space:pre-line; */
}
.codeEditor .deleteBtn {
    position: absolute;
    right: 0px;
    top: 50px;
    color: red;
    opacity: 0.3;
    font-size: 12px;
}
.codeEditor .deleteBtn:hover {
    opacity: 1;
}
.codeEditor .top-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding-left: 10px;
    padding-right: 5px;
    height: 50px;
    background-color: var(--bgColor3);
    border-bottom: 1px solid #ccc;
}
.codeEditor .top-toolbar .btn {
    color: #fff !important;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.codeEditor textarea,
.codeEditor textarea:focus,
.codeEditor textarea:active {
    /* background: var(--bgColor);
    color: var(--textColor); */
    /* border: none; */
    -webkit-appearance: none;
    box-shadow: none !important;
}

.fileDiv {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 5px 10px 5px 0px;
    padding: 5px 15px;
    cursor: pointer;
}
.fileDiv.local {
    cursor: default;
}
.fileDiv.local i {
    cursor: pointer;
}

#dropDiv {
    z-index: 1;
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    background: transparent;
}

#dropDiv.active123 {
    background: #aaa;
    z-index: 9;
}

* {
    z-index: 2;
}

.resultTextDiv {
    height: 120px;
    overflow: auto;
    resize: vertical;
    white-space: pre-line !important;
}
