/* ============================================
   ### --- RESET Y ESTILOS BASE --- ###
   ============================================ */

/* Ocultar scrollbar */
body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}
body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* ============================================
   ### --- BLOC DE NOTAS (TEXTAREA) --- ###
   ============================================ */

#nota {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 24px;
    padding-left: 60px;
    padding-right: 100px;
    resize: none;
    box-sizing: border-box;
    z-index: 1;
}

/* ============================================
   ### --- MENÚ LATERAL --- ###
   ============================================ */

#nav-menu {
    position: fixed;
    display: grid;
    row-gap: 6px;
    right: 12px;
    top: 12px;
    font-size: 18px;
}

#info-page {
    position: fixed;
    display: grid;
    row-gap: 6px;
    right: 12px;
    bottom: 12px;
}

#info-page a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   ### --- BOTONES GENERALES --- ###
   ============================================ */

.btn {
    cursor: pointer;
    opacity: 20%;
}
.btn:hover {
    opacity: 80%;
}
.btn:active {
    transform: scale(0.92);
    transition: transform 0.02s ease;
}

/* ============================================
   ### --- SKINS DEL TEXTAREA --- ###
   ============================================ */

.skin-light {
    font-family: monospace;
}

/* ============================================
   ### --- UTILIDADES --- ###
   ============================================ */

.invert {
    filter: invert(1);
}

/* ============================================
   ### --- MEDIA QUERY PARA MÓVILES --- ###
   ============================================ */

@media (max-width: 768px) {
    #nota {
        padding-left: 24px;
        padding-right: 50px;
    }
}