/* Standart */
:root {
    --d: 0;
}
* {
    color: #EEE;
    font-family: monospace;
    font-weight: 700;
    font-size: 1.5rem;

    box-sizing: border-box;
    
    display: grid;
    place-items: center;

    width: 100%;
    height: 100%;
}
head, title, script, style {
    display: none;
}
body {
    background: #202020 url('assets/wallpaper1.png') no-repeat fixed center / cover; 
}
.general {
    width: 95%;
    height: 92%;
    background: rgba(64,64,64,0.3);
    border: 3px solid rgba(128,128,128,0.2);
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}
.left {
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
    padding: 10px 10px 25px 10px;
}
.brend {
    height: 5%;
    font-size: 1.5rem;
    user-select: none;
}
.listNotes {
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
.pln {
    background: rgba(64,64,64,0.3) ;
    width: 80%;
    height: 5%;
    border-radius: 5px;
    font-size: 0.75rem;
    cursor: pointer;
    user-select: none;
}
.controlButtons {
    width: 100%;
    height: 5%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
.controlButtons2 {
    width: 100%;
    height: 5%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
.pcb {
    width: 40px;
    height: 40px;
    background: rgba(64,64,64,0.3) ;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
}
.lp {
    width: 25px;
    aspect-ratio: 1 / 1;
    filter: invert(1);
}
/*CSS ANIMATION*/
.pcb, .pln, .classSelectNote {
    transition: all 0.2s ease;
}
.pln:hover {
    width: 85%;
    background: rgba(128,128,128,0.2);
}
.pcb:hover {
    width: 45px;
    background: rgba(128,128,128,0.2)
}
.pln:active {
    width: 85%;
    height: 6%;
    background: rgba(255,255,255,0.2)
}
.pcb:active {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
}
.classSelectNote {
    width: 85%;
    height: 6%;
    background: rgba(255,255,255,0.2)
}
.classSelectNote:hover {
    width: 85%;
    height: 6%;
    background: rgba(255,255,255,0.2)
}
.classSelectNote:active {
    width: 85%;
    height: 6%;
    background: rgba(255,255,255,0.2)
}
/*RIGHT RIGHT RIGHT RIGHT */
.right {
    width: 80%;
    padding: 10px 10px 10px 10px;
    border-left: 4px dashed rgba(255,255,255,0.03);
    display: flex;
    flex-direction: row;
    justify-content: start;
}
.textArea {
    white-space: pre-wrap;   
    overflow-y: auto; 
    overflow-x: hidden;
    display: inline-block;
    background: none;
    border: none;
    outline: none;
    resize: none;
    scrollbar-color: #AAFFAAAA #00000000;
    scrollbar-width: auto;
    text-align: left;
    align-self: ease;
    font-size: 1rem;
}
.dev777 {
    width: 50%;
    height: 50%;
    position: fixed;
    color: #559955;
    opacity: var(--d);
    user-select: none;
    pointer-events: none;
    font-size: 0.75rem;
}
.dev888 {
    width: 50%;
    height: 50%;
    position: fixed;
    bottom: 30px;
    color: #995555;
    opacity: var(--d);
    user-select: none;
    pointer-events: none;
    font-size: 0.75rem;
}
.renamerDiv {
    position: fixed;
    bottom: 100px;
    width: 20%;
    height: 5%;
    background: #202020;
    opacity: 0;
}
.renamerInput {
    background: none;
    outline: none;
    border: none;
    font-size: 1rem;
    text-align: center;
}
.dragDrop {
    position: fixed;
    background: #00000088;
    opacity: 0;
    user-select: none;
    pointer-events: none;
}
::selection {
    background-color: #DDFFDD10;
    color: #AAFFAADD
}